cURL
curl --request GET \ --url https://client-api.salesfinity.co/v1/webhooks \ --header 'x-api-key: <api-key>'
{}
Returns all webhooks for the team
{ "data": [ { "_id": "507f1f77bcf86cd799439011", "name": "CRM Call Sync", "url": "https://example.com/webhooks/salesfinity", "events": ["CALL_LOGGED"], "status": "active" }, { "_id": "507f1f77bcf86cd799439022", "name": "Snooze Notifications", "url": "https://example.com/webhooks/snooze", "events": ["CONTACT_SNOOZED"], "status": "active" } ], "pagination": { "total": 2, "page": 1, "limit": 10, "pages": 1 } }
_id
name
url
events
status
active
inactive
Page number
x >= 1
Items per page
1 <= x <= 100
Webhooks retrieved successfully
The response is of type object.
object