Skip to main content
This schema describes objects returned by the Webhook Event endpoints.

A webhook event that was sent or attempted to be sent

id
string<uuid>
required
read-only

Unique identifier for the webhook event (UUID)

Example:

"019f985c-63a2-711e-ac40-c3bd67ad8ccd"

timestamp_created
string<date-time>
required
read-only

Timestamp when the webhook event was created

Example:

"2026-07-25T08:20:19.490Z"

timestamp_created_date
string<date>
required
read-only

Date when the webhook event was created (for partitioning)

Example:

"2024-01-15"

organization_id
string<uuid>
required
read-only

Organization (workspace) UUID that owns this webhook event

Example:

"019f985c-63a2-711e-ac40-c3be9c178ec2"

success
boolean
required
read-only

Whether the webhook call was successful

Example:

true

retry_count
number
required
read-only

Number of retry attempts made

Example:

0

will_retry
boolean
required
read-only

Whether the webhook will be retried

Example:

false

webhook_url
string
required
read-only

Target URL where the webhook was sent

Example:

"https://webhook.site/unique-url"

payload
object
read-only

JSON payload that was sent/attempted to be sent

status_code
null | number

HTTP status code received from the webhook endpoint (if any)

Example:

200

error_message
null | string

Error message if the webhook failed

Example:

"Connection timeout"

timestamp_next_retry
null | string<date-time>

Timestamp for the next retry attempt (if applicable)

Example:

"2026-07-25T08:20:19.490Z"

retry_group_id
null | string<uuid>

UUID for grouping retry attempts

Example:

"019f985c-63a2-711e-ac40-c3bf4ca99eed"

retry_successful
null | boolean

Whether the retry was successful (for retry events)

Example:

true

lead_email
null | string

Email address of the lead associated with this webhook event

Example:

"lead@example.com"

response_time_ms
null | number

Response time in milliseconds for the webhook call

Example:

150