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

# Delete subscription

> Delete a webhook subscription

Cascades — deletes pending + historical deliveries. To pause without losing the audit trail, use [Update](/api-reference/webhooks/subscriptions/update) with `status: "paused"`.

<Info>**Scope** `webhooks:write` · rate-limited</Info>

## Headers

<ParamField header="Authorization" type="string" required>
  API key.
</ParamField>

## Path parameters

<ParamField path="id" type="string" required>
  Subscription UUID.
</ParamField>

## Response

<ResponseField name="deleted" type="boolean">
  Always `true` on success.
</ResponseField>

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