Skip to main content
DELETE
/
v1
/
businesses
/
{businessId}
/
delete
/
webhooks
/
{webhookId}
Delete Webhook
curl --request DELETE \
  --url https://api.example.com/v1/businesses/{businessId}/delete/webhooks/{webhookId}
Permanently remove a webhook registration. Once deleted, Connectly stops sending events for that topic to the registered address.
Deletion is immediate and irreversible. If you only need to change the endpoint URL, use Update webhook instead to avoid a gap in event delivery.

Endpoint

DELETE https://api.connectly.ai/v1/businesses/{businessId}/delete/webhooks/{webhookId}
Retrieve the webhookId from the Get webhooks response.

Example request

curl --request DELETE \
  --url https://api.connectly.ai/v1/businesses/{businessId}/delete/webhooks/{webhookId} \
  --header 'X-API-Key: YOUR_API_KEY'

Response

A successful deletion returns HTTP 200 with an empty JSON object.
{}

Error responses

StatusMeaning
401Missing or invalid X-API-Key.
404The specified webhookId does not exist.
500Internal server error.