v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Incoming Webhooks

Get incoming webhook event details

Returns a single webhook event, including the automations it triggered. Requires a USER API key.

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

Path parameters

webhookIdstring required
Example:clx123incomingwebhook
eventIdstring required
Example:clx987event

Response

Incoming webhook event details

idstring required
status'RECEIVED' | 'PROCESSING' | 'COMPLETED' | 'FAILED' | 'TIMEOUT' required
payloadobject nullable

Raw JSON payload received

payloadSizenumber nullable
ipAddressstring nullable
userAgentstring nullable
createdAtstring required
updatedAtstring required

Example response

{
  "id": "clx987event",
  "status": "COMPLETED",
  "payloadSize": 512,
  "ipAddress": "203.0.113.10",
  "userAgent": "curl/8.4.0",
  "createdAt": "2024-01-01T12:00:00Z",
  "updatedAt": "2024-01-01T12:00:00Z",
  "automations": [
    {
      "id": 42,
      "name": "Notify sales channel",
      "status": "ACTIVE"
    }
  ]
}