Skip to main content
DELETE
/
v1
/
webhooks
/
{id}
cURL
curl --request DELETE \
  --url https://client-api.salesfinity.co/v1/webhooks/{id} \
  --header 'x-api-key: <api-key>'
{}
Deletes a webhook by its ID. Once deleted, you will no longer receive notifications at the webhook URL.

Path Parameters

  • id (required, string): Webhook ID

Response

Returns the deleted webhook object, or 404 if not found.
{
  "_id": "507f1f77bcf86cd799439011",
  "name": "CRM Call Sync",
  "url": "https://example.com/webhooks/salesfinity",
  "events": ["CALL_LOGGED"],
  "status": "active"
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Webhook ID

Response

Webhook deleted successfully

The response is of type object.