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

# Delete Webhook

> Permanently delete a webhook subscription.

Requires an API key with `full_access` scope.

<Warning>
  This action is irreversible. The webhook will stop receiving deliveries
  immediately and all associated delivery logs will be removed.
</Warning>

## Path parameters

<ParamField path="webhookId" type="string" required>
  The unique identifier of the webhook.
</ParamField>

## Response

Returns `204 No Content` with an empty response body.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.dronebundle.com/v1/webhooks/019d5221-b413-71a9-a56b-f70bc91efe63 \
    -H "Authorization: Bearer v1_your_api_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 204 theme={null}
  {}
  ```
</ResponseExample>

## Errors

**404 Not Found** - Webhook not found.

```json theme={null}
{
  "message": "Webhook not found"
}
```
