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

# Delete Webhook

> Delete a webhook subscription by ID.

<Note>
  Retrieve your API Key from your [VozAgent Dashboard](https://app.vozagent.ai/settings/api).
</Note>

## Path parameters

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

## Response

Returns a success confirmation. The webhook will immediately stop receiving events.

<RequestExample>
  ```bash theme={null}
  curl -X DELETE https://api.vozagent.ai/v1/webhooks/wh-a1b2c3d4... \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

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