v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
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

countnumber required
pageSizenumber required

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
}