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

# Delete Preset

> Delete a saved preset

Permanently remove a preset from your account.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE \
    -H "Authorization: Bearer YOUR_API_KEY" \
    https://polychadsbot.xyz/api/v1/presets/2
  ```
</RequestExample>

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

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

| Parameter   | Type    | In   | Description                    |
| ----------- | ------- | ---- | ------------------------------ |
| `preset_id` | integer | path | The ID of the preset to delete |
