This schema describes objects returned by the Webhook Event endpoints.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | string (uuid) | Yes | Unique identifier for the webhook event (UUID) (read-only) |
timestamp_created | string (date-time) | Yes | Timestamp when the webhook event was created (read-only) |
timestamp_created_date | string (date) | Yes | Date when the webhook event was created (for partitioning) (read-only) |
organization_id | string (uuid) | Yes | Organization (workspace) UUID that owns this webhook event (read-only) |
payload | object | No | JSON payload that was sent/attempted to be sent (read-only) |
success | boolean | Yes | Whether the webhook call was successful (read-only) |
retry_count | number | Yes | Number of retry attempts made (read-only) |
will_retry | boolean | Yes | Whether the webhook will be retried (read-only) |
webhook_url | string | Yes | Target URL where the webhook was sent (read-only) |
status_code | number, nullable | No | HTTP status code received from the webhook endpoint (if any) (read-only) |
error_message | string, nullable | No | Error message if the webhook failed (read-only) |
timestamp_next_retry | string (date-time), nullable | No | Timestamp for the next retry attempt (if applicable) (read-only) |
retry_group_id | string (uuid), nullable | No | UUID for grouping retry attempts (read-only) |
retry_successful | boolean, nullable | No | Whether the retry was successful (for retry events) (read-only) |
lead_email | string, nullable | No | Email address of the lead associated with this webhook event (read-only) |
response_time_ms | number, nullable | No | Response time in milliseconds for the webhook call (read-only) |