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

# Delete Webhook

> Delete a webhook subscription by ID.

## Overview

Permanently deletes a webhook subscription. Only the API key that created the webhook can delete it.

**Tier:** Basic 🔒

## Path Parameters

<ParamField path="webhook_id" type="string" required>
  UUID of the webhook subscription to delete.
</ParamField>

## Response

<ResponseField name="deleted" type="boolean">
  Always `true` on success.
</ResponseField>

<ResponseField name="webhook_id" type="string">
  UUID of the deleted webhook.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE https://api.aioka.io/v1/webhooks/3fa85f64-5717-4562-b3fc-2c963f66afa6 \
    -H "X-API-Key: aik_basic_..."
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "deleted": true,
    "webhook_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  }
  ```
</ResponseExample>
