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

# Delete Webhook

> Delete a webhook

Permanently delete a webhook. Pending deliveries will be cancelled.

## Path Parameters

<ParamField path="id" type="string" required>
  Webhook ID
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE https://prod.api.unleeshed.ai/partner/v1/webhooks/whk_abc123 \
    -H "X-Api-Key: your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Webhook deleted successfully"
  }
  ```
</ResponseExample>
