Skip to main content
DELETE
/
webhooks
/
{id}
Delete Webhook
curl --request DELETE \
  --url https://api.kardow.com/webhooks/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "deleted": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://kardow.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Permanently delete a webhook subscription. Pending deliveries for this subscription will be discarded.

Path Parameters

id
string
required
The subscription ID returned when you created the webhook.

Examples

cURL
curl --request DELETE \
  --url "https://api.kardow.com/webhooks/your-subscription-id" \
  --header "x-api-key: your-api-key-here"

Response

{
  "data": {
    "id": "your-subscription-id",
    "deleted": true
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication. Get yours from Settings > API Keys in the Kardow dashboard.

Path Parameters

id
string<uuid>
required

Subscription UUID.

Response

Subscription deleted

data
object
required