Skip to main content
Permanently delete a webhook. All pending deliveries for this webhook will be cancelled.

Endpoint

DELETE /v1/accounts/:accountId/webhooks/:id

Authentication

Bearer token required.

Path Parameters

id
string
required
The webhook’s unique ID.

Response

Returns an empty data object on success.

Example

curl -X DELETE https://api.collab-kit.com/v1/accounts/${ACCOUNT_ID}/webhooks/wh_abc123 \
  -H "Authorization: Bearer ${TOKEN}"
Response
{
  "type": "response",
  "success": true,
  "description": "Webhook deleted",
  "data": {},
  "error": null
}