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

# Delete DM Template

> Delete a DM template

Deletes a DM template.

### Headers

| Header          | Required | Description                     |
| --------------- | -------- | ------------------------------- |
| `Authorization` | Yes      | `Bearer ctgo_your_api_key_here` |

### Path parameters

| Parameter | Type    | Description     |
| --------- | ------- | --------------- |
| `id`      | integer | The template ID |

### Example

```bash theme={null}
curl -X DELETE https://www.catchthegoodones.com/api/v2/dm-templates/1 \
  -H "Authorization: Bearer ctgo_your_api_key_here"
```

### Response

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

  ```json 404 theme={null}
  {
    "error": "Template not found"
  }
  ```
</ResponseExample>
