Skip to main content
DELETE
/
webhooks
/
{id}
Delete webhook
curl --request DELETE \
  --url https://xquik.com/api/v1/webhooks/{id} \
  --header 'x-api-key: <x-api-key>'
Free — does not consume credits
curl -X DELETE https://xquik.com/api/v1/webhooks/15 \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Path parameters

id
string
required
The webhook ID to delete.

Headers

x-api-key
string
required
Your API key. This endpoint also accepts session cookie authentication.

Response

success
boolean
Always true on successful deletion.
{ "success": true }
The webhook is deactivated immediately. Pending deliveries that are already in-flight may still be attempted, but no new deliveries will be queued.
This endpoint supports dual authentication: API key (x-api-key header) or session cookie from the dashboard.Related: List Webhooks · Create Webhook