Skip to main content
GET
/
v1
/
webhooks
/
events
cURL
curl --request GET \
  --url https://client-api.salesfinity.co/v1/webhooks/events \
  --header 'x-api-key: <api-key>'
[
  {
    "event": "<string>",
    "description": "<string>"
  }
]
Returns a list of all available webhook event types and their descriptions. Use this endpoint to discover which events you can subscribe to when creating or updating a webhook.

Response

Returns an array of event objects.
[
  {
    "event": "CALL_LOGGED",
    "description": "Triggered when a user logs a call, capturing relevant call details."
  },
  {
    "event": "CONTACT_SNOOZED",
    "description": "Triggered when a contact is snoozed, capturing the contact and snooze details."
  }
]

Authorizations

x-api-key
string
header
required

Response

200 - application/json

Webhook events retrieved successfully

event
string
description
string