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

# Delete webhook

> Permanently removes the webhook endpoint. No more events will be delivered to that URL.

<ParamField header="x-api-key" type="string" required>
  BOH API key with `admin:webhooks` scope.
</ParamField>

<ParamField path="webhookId" type="string" required>
  Webhook endpoint UUID.
</ParamField>

<ResponseExample>
  ```json 204 theme={null}
  ```

  ```json 404 theme={null}
  {
    "error": {
      "kind": "webhook_not_found",
      "message": "Webhook endpoint not found"
    }
  }
  ```
</ResponseExample>
