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