Delete Form
Soft deletes a form (moves to trash).
DELETE /forms/
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The form ID |
Note: This is a soft delete — the form is moved to trash and can be restored from the dashboard.
Response
{
"message": "Form moved to trash",
"id": "abc123"
}Code Examples
curl -X DELETE https://api.makeform.ai/forms/abc123 \
-H "Authorization: Bearer mk_xxxxxxxxxxxxx"