Delete Submission

Soft-delete a submission. It can be restored later.

submissions.delete
DELETE/v1/submissions/:id

Example Request

curl
curl -X DELETE "https://proforms.io/api/v1/submissions/sub_def456" \
  -H "Authorization: Bearer pf_your_api_key"

Response

200 OK
{
  "success": true,
  "data": {
    "message": "Submission deleted"
  }
}
â„šī¸
Deleted submissions are soft-deleted and can be restored. Use the Bulk Actions endpoint to delete multiple submissions at once.