Skip to main content
DELETE
/
v1
/
webhooks
/
{webhook_id}
Delete webhook
curl --request DELETE \
  --url https://api.adullam.dev/v1/webhooks/{webhook_id} \
  --header 'Authorization: Bearer <token>'
{
  "error": {
    "type": "authentication_error",
    "code": "invalid_token",
    "message": "Invalid or expired access token",
    "request_id": "req_abc123"
  }
}

Delete Webhook

Removing a registered webhook endpoint stops event notifications from being sent to that URL. Use the Delete Webhook API to delete a specific webhook by its ID, ensuring that you no longer receive events for that subscription.

Authorizations

Authorization
string
header
required

Use the access token obtained from /v1/auth/token

Path Parameters

webhook_id
string
required

Webhook ID

Response

Webhook deleted