> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Webhook

> Delete a webhook

## Request

### Path Parameters

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

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Indicates successful deletion
</ResponseField>

<ResponseField name="message" type="string">
  Confirmation message
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.60db.ai/webhooks/wh-123 \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  await client.deleteWebhook("wh-123");
  ```

  ```python Python theme={null}
  client.delete_webhook('wh-123')
  ```
</RequestExample>

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