Incoming Webhooks
List incoming webhooks
Lists incoming webhooks for the authenticated account. Filter by search text and active status. Requires a USER API key.
get/public/v1/incoming-webhooks
Query parameters
searchstring
Example:CRM
isActiveboolean
Example:true
Response
Paginated incoming webhooks
Example response
{
"results": [
{
"id": "clx123incomingwebhook",
"name": "External CRM event",
"description": "Receives events from the external CRM",
"url": "https://hooks.example.com/webhook/clx123incomingwebhook",
"isActive": true,
"useAuthentication": true,
"createdAt": "2024-01-01T12:00:00Z",
"updatedAt": "2024-01-01T12:00:00Z",
"accessToken": "64-character-access-token"
}
],
"count": 1,
"pageSize": 20
}