Delete Form

Archive a form. The form is soft-deleted and can be restored later.

forms.delete
DELETE/v1/forms/:id

Example Request

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

Response

200 OK
{
  "success": true,
  "data": {
    "message": "Form archived successfully"
  }
}
â„šī¸
Forms are archived, not permanently deleted. Archived forms stop accepting submissions and are hidden from the default list. Use status=archived on the List Forms endpoint to view them.