Skip to main content
GET
/
v1
/
webhooks
/
{id}
cURL
curl --request GET \
  --url https://client-api.salesfinity.co/v1/webhooks/{id} \
  --header 'x-api-key: <api-key>'
{}
Retrieves a single webhook by its ID.

Path Parameters

  • id (required, string): Webhook ID

Response

Returns the webhook object, or 404 if not found.
{
  "_id": "507f1f77bcf86cd799439011",
  "name": "CRM Call Sync",
  "url": "https://example.com/webhooks/salesfinity",
  "events": ["CALL_LOGGED"],
  "dispositions": [1, 4],
  "status": "active",
  "createdAt": "2024-01-15T10:00:00.000Z",
  "updatedAt": "2024-01-15T10:00:00.000Z"
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Webhook ID

Response

Webhook retrieved successfully

The response is of type object.