v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
WebhookEvent

Get webhook event

Requires one of the following scopes: webhook_events:read, webhook_events:all, all:read, all:all

get/api/v2/webhook-events/{id}

Path parameters

idstring uuid required
Example:019f94cd-af63-75f7-b7d9-07b8081affbf

The ID of the requested item

Response

The requested Webhook Event

idstring uuid required

Unique identifier for the webhook event (UUID)

timestamp_createdstring date-time required

Timestamp when the webhook event was created

timestamp_created_datestring date required

Date when the webhook event was created (for partitioning)

organization_idstring uuid required

Organization (workspace) UUID that owns this webhook event

payloadobject

JSON payload that was sent/attempted to be sent

successboolean required

Whether the webhook call was successful

retry_countnumber required

Number of retry attempts made

will_retryboolean required

Whether the webhook will be retried

webhook_urlstring required

Target URL where the webhook was sent

status_codenumber nullable

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

error_messagestring nullable

Error message if the webhook failed

timestamp_next_retrystring date-time nullable

Timestamp for the next retry attempt (if applicable)

retry_group_idstring uuid nullable

UUID for grouping retry attempts

retry_successfulboolean nullable

Whether the retry was successful (for retry events)

lead_emailstring nullable

Email address of the lead associated with this webhook event

response_time_msnumber nullable

Response time in milliseconds for the webhook call

Example response

{
  "id": "019f94cd-843d-790a-8104-4e2624ac48f7",
  "timestamp_created": "2026-07-24T15:45:24.541Z",
  "timestamp_created_date": "2024-01-15",
  "organization_id": "019f94cd-843d-790a-8104-4e275792a51d",
  "success": true,
  "webhook_url": "https://webhook.site/unique-url",
  "status_code": 200,
  "error_message": "Connection timeout",
  "timestamp_next_retry": "2026-07-24T15:45:24.541Z",
  "retry_group_id": "019f94cd-843d-790a-8104-4e289b092fe1",
  "retry_successful": true,
  "lead_email": "lead@example.com",
  "response_time_ms": 150
}