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

# Delete Webhook

> Deletes a webhook endpoint

## Request Parameters

### Path Parameters

<ParamField path="id" type="string" required>
  Webhook endpoint ID
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE \
    'https://platform.returnqueen.dev/api/partner_webhooks/ep_2KtRQ8fTStWPKrXP' \
    -H 'X-API-KEY: your-api-key'
  ```
</RequestExample>

<ResponseExample>
  ```
  204 No Content
  ```
</ResponseExample>

<Note>
  This endpoint returns a 204 No Content status on successful deletion. Deleted webhooks cannot be recovered.
</Note>
