v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Incoming Webhooks

Get incoming webhook details

Returns an incoming webhook by ID. Requires a USER API key.

get/public/v1/incoming-webhooks/{webhookId}

Path parameters

webhookIdstring required
Example:clx123incomingwebhook

Response

Incoming webhook details

idstring required
namestring required
descriptionstring nullable
urlstring required
isActiveboolean required
useAuthenticationboolean required
createdAtstring required
updatedAtstring required
accessTokenstring nullable

Example response

{
  "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"
}