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

# Delete Webhook

> Permanently remove a webhook endpoint. This cannot be undone.

## Path Parameters

<ParamField path="id" type="string" required>
  The webhook UUID.
</ParamField>

## Example

<CodeGroup>
  ```bash curl theme={null}
  curl -X DELETE https://www.hitheo.ai/api/v1/webhooks/WEBHOOK_ID \
    -H "Authorization: Bearer $THEO_API_KEY"
  ```

  ```typescript SDK theme={null}
  await theo.deleteWebhook("WEBHOOK_ID");
  ```
</CodeGroup>

### Response

```json theme={null}
{ "deleted": true }
```

<Warning>
  Deleting a webhook also removes its delivery log history. Export any logs you need before deleting.
</Warning>
