> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tracklysms.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Supporting Document

> Delete a supporting document from a business profile.

Removes a supporting document from a business profile. Requires a **live** key.

## Path Parameters

<ParamField path="profile_id" type="string" required>
  The business profile's id.
</ParamField>

<ParamField path="doc_id" type="string" required>
  The document's id.
</ParamField>

## Examples

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.tracklysms.com/api/v2/business-profiles/664a1b2c3d4e5f6071829300/documents/9f2c4a1e7b8d4c3f" \
    -H "X-Api-Key: trk_your_api_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 — Success theme={null}
  { "success": true }
  ```
</ResponseExample>

## Error Codes

| HTTP Status | Error Code                         | Description                                  |
| ----------- | ---------------------------------- | -------------------------------------------- |
| 403         | `sandbox_read_only`                | Sandbox keys cannot delete documents.        |
| 404         | `not_found` / `document_not_found` | No such profile or document on your account. |
