DELETE/forms/:id

Delete Form

Soft-delete a form and its associated files

Scope: FORMS_WRITE

Overview

Soft-deletes a form by marking it as inactive. The form record is retained in the database but will no longer appear in list results or be accessible via the API. Associated file uploads stored in Google Cloud Storage are permanently deleted.

Request

DELETE/forms/:id

Path Parameters

Headers

HeaderValue
AuthorizationBearer fxk_live_<your-api-key>

Example Request

curl -X DELETE "https://api.formfex.com/api/v1/public/forms/FORM_ID" \
  -H "Authorization: Bearer $FORMFEX_API_KEY"

Response

Irreversible

While the database record is retained (soft delete), all file uploads associated with the form are permanently deleted from storage. This cannot be undone.

Webhooks & Integrations

Deleting a form triggers the FORM_DELETED webhook event and sends notifications to configured Slack or Teams integrations.

n8n

In n8n, this operation is available as Delete under the Form resource in the Formfex node.