Delete Form
Permanently deletes a form and all of its submissions. This action cannot be undone.
DELETE /v1/forms/{formId}Deleting a form also deletes all submissions, webhooks, and notification settings associated with it. Export your submissions before deleting if you need to keep the data.
Request
curl -X DELETE https://api.formtorch.com/v1/forms/a1b2c3d4e5 \
-H "Authorization: Bearer YOUR_API_KEY"Path parameters
| Parameter | Description |
|---|---|
formId | The 10-character form ID |
Response
Returns 204 No Content on success. No response body.
Error responses
| Status | Code | Description |
|---|---|---|
404 | form_not_found | No form with this ID in your account |
Last updated on