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

# Delete webhook

> Delete webhook for a campaign.

### Parameters

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

### Response

<ResponseField name="success" type="boolean">
  Whether the deletion succeeded.
</ResponseField>

<ResponseExample>
  ```json Success theme={null}
  {
    "success": true
  }
  ```

  ```json Error theme={null}
  {
    "success": false,
    "error": "Webhook not found"
  }
  ```
</ResponseExample>
