Get a delivery
GET/api/v1/webhooks/{id}/deliveries/{delivery_id}
scope
webhooks:manageOne delivery with the payload (the envelope’s data) that was sent.
Path parameters
| Name | Type | Description |
|---|---|---|
idrequired | string (uuid) | Webhook endpoint id |
delivery_idrequired | string (uuid) | Delivery id |
Request
curl "https://your-crm.example.com/api/v1/webhooks/3a4b5c6d-7e8f-4a9b-8c0d-1e2f3a4b5c6d/deliveries/7c8d9e0f-1a2b-4c3d-8e4f-5a6b7c8d9e0f" \
-H "Authorization: Bearer $RAABTA_API_KEY"Response · 200 OK
{
"data": {
"id": "7c8d9e0f-1a2b-4c3d-8e4f-5a6b7c8d9e0f",
"event_id": "evt_5f1c2a9e8b7d4c3f9a2b1c0d9e8f7a6b",
"event_type": "contact.created",
"status": "succeeded",
"attempts": 1,
"next_attempt_at": null,
"last_status_code": 200,
"last_error": null,
"response_snippet": "{\"ok\":true}",
"duration_ms": 182,
"delivered_at": "2026-09-02T10:06:00.000Z",
"created_at": "2026-09-02T10:05:59.000Z",
"payload": {
"contact": {
"id": "9d7e4c11-5a2b-4f7c-8e3d-2a1b0c9d8e7f",
"name": "Ayesha Khan"
}
}
}
}Response
Wrapped in { data: … }| Name | Type | Description |
|---|---|---|
idrequired | string (uuid) | UUID |
event_idrequired | string | The `evt_…` id in the envelope this delivery carries |
event_typerequired | string | An event type from the catalogue, e.g. contact.created |
statusrequired | string (enum) | pending = waiting for its next attempt; claimed = in flight; succeeded; failed = permanent; exhausted = out of attemptspendingclaimedsucceededfailedexhausted |
attemptsrequired | integer | |
next_attempt_atrequired | string (date-time) | null | When a pending delivery is next due |
last_status_coderequired | integer | null | HTTP status of the last attempt |
last_errorrequired | string | null | |
response_snippetrequired | string | null | First 1 KB of the last response body |
duration_msrequired | integer | null | |
delivered_atrequired | string (date-time) | null | |
created_atrequired | string (date-time) | ISO 8601 timestamp |
payloadrequired | any | The `data` that was (or will be) sent |
Errors
| Status | Code | When |
|---|---|---|
| 400 | validation_error | The body or query failed validation. `details` lists each failing field with a `path` and a `message`. |
| 401 | unauthorized | No usable API key: the Authorization header is missing or malformed, or the key is unknown, revoked or expired. The three are deliberately indistinguishable. |
| 403 | forbidden | The key is valid but lacks the scope this endpoint requires, or the request came from an address outside the key’s IP allowlist. The message says which. |
| 403 | account_suspended | The account this key belongs to is suspended. Rotating the key will not help; contact support. |
| 404 | not_found | No such resource in this account. A resource that exists in another account also returns this. |
| 429 | rate_limited | The per-key budget, or the per-IP budget for failed authentication, is exhausted. Honour `Retry-After` before retrying. |
| 500 | internal | Something failed on our side. Safe to retry with the same Idempotency-Key; quote `request_id` if it persists. |