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

# Delete Webhook

> Delete a webhook and stop all deliveries

## Overview

Permanently delete a webhook. All pending deliveries will be cancelled. Delivery history is also removed.

**Auth:** Requires JWT token (`Authorization: Bearer <token>`). Only the webhook owner can delete it.

## Path Parameters

<ParamField path="webhook_id" type="string" required>
  The webhook UUID to delete
</ParamField>

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.danubeai.com/v1/webhooks/f47ac10b-58cc-4372-a567-0e02b2c3d479" \
    -H "Authorization: Bearer YOUR_JWT_TOKEN"
  ```
</RequestExample>

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