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

# Delete a webhook

> Remove a webhook endpoint

<ParamField path="endpoint_id" type="string" required />

<ParamField header="Authorization" type="string" required>
  `Bearer {api_key}`
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://dev-backend-ai.truefans.in/api/external/v1/webhooks/{endpoint_id}/" \
    -H "Authorization: Bearer $TRUEFAN_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```text 204 No Content theme={null}
  ```

  ```json 404 Not Found theme={null}
  { "error": "Webhook not found" }
  ```
</ResponseExample>

Deletion is immediate — no further deliveries are attempted for this endpoint after this call.
