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

# Delete webhook

<Info>
  **Pre-release** — contact your Fortary account team for access.
</Info>

<Warning>
  **Illustrative reference.** These examples show the shape of the API and are provided for early evaluation while it is still being finalized. Field names and response details may change before the API is released. A complete reference, generated directly from the live API, will replace these examples once it is available.
</Warning>

Deletes a webhook. Requires the `webhook:manage` scope.

Deletion is permanent: the webhook stops matching events, in-flight deliveries are cancelled at their next attempt, and it cannot be re-enabled or updated. Its delivery history remains readable.

## Request

```bash theme={null}
curl -X DELETE https://customer-api.fortary.io/v1/webhooks/whs_9b2f4e1a7c \
  -H "Authorization: Bearer fort_..."
```

## Response

```json theme={null}
{
  "deleted": true
}
```

Errors follow the standard [error envelope](/api/concepts/errors).
