# DELETE /forms/submissions/:submission_id

**Resource:** [Forms](./forms.md)  
**MCP tool:** `delete_form_submission`  
**Scopes:** `forms:delete`  
**Write operation:** yes

Permanently delete a form submission (and any uploaded files). Optional ?delete_archived_pdf=true also removes the auto-archived PDF in the Documents library. Cannot be undone.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `submission_id` | path | string | yes |  |
| `delete_archived_pdf` | query | boolean | no | When true, also deletes the auto-archived PDF stored in crm_documents from this submission. |

## Request example

```bash
curl -X DELETE   "https://api.trustpager.com/functions/v1/api/v1/forms/submissions/:submission_id"   -H "Authorization: Bearer YOUR_API_KEY"
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`