Get Message
Retrieve a specific webhook message by its ID.
Returns the full message details including the event type, payload data, timestamp, and delivery channel information. Use this to inspect the exact payload that was sent to your webhook endpoints.
Use include_attempts=true to also retrieve delivery attempts for this message, which include HTTP response codes, response bodies, and timestamps for debugging delivery failures.
Path parameters
The unique identifier of the message to retrieve (UUID).
The unique identifier of the message to retrieve (UUID).
Query parameters
Include delivery attempts for this message. Each attempt includes the HTTP response code, response body, and timestamp.
Include delivery attempts for this message. Each attempt includes the HTTP response code, response body, and timestamp.
Response
Webhook message details
Example response
{
"channels": [
"sync.completed"
],
"event_type": "sync.completed",
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"payload": {
"collection_name": "Customer Support Tickets",
"collection_readable_id": "customer-support-tickets-x7k9m",
"event_type": "sync.completed",
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"source_connection_id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
"source_type": "zendesk",
"status": "completed",
"timestamp": "2024-03-15T09:45:32Z"
},
"timestamp": "2024-03-15T09:45:32Z"
}