curl --request GET \
--url https://api.questra.ai/webhooks/{id}/deliveries/{delivery_id} \
--header 'Authorization: Bearer <token>' \
--header 'X-Org-Id: <x-org-id>'{
"id": "<string>",
"webhook_id": "<string>",
"event": "<string>",
"status": "succeeded",
"attempt": 123,
"created_at": "2023-11-07T05:31:56Z",
"status_code": 123,
"request_body": "<string>",
"response_body": "<string>",
"duration_ms": 123
}Returns a single delivery attempt, including the full request payload and response body.
curl --request GET \
--url https://api.questra.ai/webhooks/{id}/deliveries/{delivery_id} \
--header 'Authorization: Bearer <token>' \
--header 'X-Org-Id: <x-org-id>'{
"id": "<string>",
"webhook_id": "<string>",
"event": "<string>",
"status": "succeeded",
"attempt": 123,
"created_at": "2023-11-07T05:31:56Z",
"status_code": 123,
"request_body": "<string>",
"response_body": "<string>",
"duration_ms": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Delivery attempt
A single delivery attempt for a webhook
The event type that was delivered
Whether the delivery was accepted by the endpoint
succeeded, failed Attempt number (1 = first try, 2+ = retries)
HTTP status code returned by the endpoint
JSON payload sent to the endpoint
Response body returned by the endpoint (truncated to 10 KB)
Round-trip time in milliseconds