Submissions
Delete Submission
Remove a single submission from a form.
DELETE
/open/forms/{id}/submissions/{submission_id}Remove a single submission from a form.
#Authentication & Scope
Requires the forms-write ability.
#Request
http
DELETE /open/forms/{id}/submissions/{submission_id} HTTP/1.1
Host: api.sharaforms.com
Authorization: Bearer <token>#Path Parameters
| Parameter | Type | Description |
|---|---|---|
| id | number | Numeric ID of the parent form. |
| submission_id | number | Numeric ID of the submission to permanently delete. |
#Response
200 OK – Returns a confirmation message.
json
{
"message": "Record successfully removed."
}403 Forbidden – The token lacks forms-write or you don't have permission.