# DELETE /forms/submissions/:id

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

Permanently delete a form submission and any uploaded files attached to its responses. Use delete_archived_pdf=true to also remove the auto-archived PDF from the Documents library (matched via source_form_submission_id). Unlike void, this removes the record entirely and cannot be undone. Requires forms:delete scope.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `id` | path | uuid | yes | Submission ID |
| `delete_archived_pdf` | query | boolean | no | When true, also deletes the auto-archived PDF in the Documents library generated from this submission. Default false - the PDF is preserved. |

## Response example

```json
{
  "data": {
    "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "deleted": true,
    "files_deleted": 2,
    "archived_pdfs_deleted": 1
  },
  "meta": {
    "credits_remaining": 9488
  }
}
```

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