Skip to main content
GET
/
api
/
webhooks
/
deliveries
/
{id}
Get delivery
curl --request GET \
  --url https://api.example.com/api/webhooks/deliveries/{id} \
  --header 'Authorization: <authorization>'
{
  "id": "54697e99-c2f5-4630-9f88-c1a3b1428d65",
  "subscriptionId": "1c84203c-b4e3-40de-83a9-51bc0d9c991f",
  "eventType": "payout.status.updated",
  "payload": {
    "type": "payout.status.updated",
    "createdAt": "2026-05-27T09:30:46Z",
    "data": {
      "payoutId": "txn_abc",
      "status": "processing",
      "step": "settling"
    }
  },
  "status": "succeeded",
  "attemptCount": 1,
  "nextAttemptAt": "2026-05-27T09:30:46Z",
  "lastResponseCode": 200,
  "lastResponseBody": null,
  "lastError": null,
  "createdAt": "2026-05-27T09:30:46Z",
  "deliveredAt": "2026-05-27T09:30:48Z"
}
Single delivery row. Useful after Replay to poll its outcome.
Scope webhooks:read

Headers

Authorization
string
required
API key.

Path parameters

id
string
required
Delivery UUID.

Response

Same shape as one row on List deliveries.
{
  "id": "54697e99-c2f5-4630-9f88-c1a3b1428d65",
  "subscriptionId": "1c84203c-b4e3-40de-83a9-51bc0d9c991f",
  "eventType": "payout.status.updated",
  "payload": {
    "type": "payout.status.updated",
    "createdAt": "2026-05-27T09:30:46Z",
    "data": {
      "payoutId": "txn_abc",
      "status": "processing",
      "step": "settling"
    }
  },
  "status": "succeeded",
  "attemptCount": 1,
  "nextAttemptAt": "2026-05-27T09:30:46Z",
  "lastResponseCode": 200,
  "lastResponseBody": null,
  "lastError": null,
  "createdAt": "2026-05-27T09:30:46Z",
  "deliveredAt": "2026-05-27T09:30:48Z"
}