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

# Delete Webhook

> Delete a webhook

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

<Warning>
  This action is irreversible. Any pending deliveries will be cancelled.
</Warning>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://agentgate.mynewapi.com/v1/webhooks/wh_abc123 \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

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