Retrieve a single webhook delivery by its ID.
GET /api/v1/businesses/:businessId/webhook-deliveries/:deliveryId
Returns the full details of a webhook delivery attempt, including request/response information.
Parameters
Path
| Name | Type | Required | Description |
|---|---|---|---|
businessId | string | Yes | The business ID |
deliveryId | string | Yes | The delivery ID |
Request example
Response
Response schema
| Field | Type | Description |
|---|---|---|
id | string | Delivery identifier |
eventType | string | Event type |
endpointId | string | The endpoint this delivery was sent to |
status | string | PENDING, DELIVERED, FAILED, or RETRYING |
attempts | integer | Number of attempts |
requestUrl | string | URL the request was sent to |
requestBody | string | JSON payload that was sent |
responseCode | integer or null | HTTP response code from the endpoint |
responseBody | string or null | Response body from the endpoint |
lastAttemptAt | string or null | ISO 8601 last attempt timestamp |
createdAt | string | ISO 8601 creation timestamp |