GET/event

Retrieve an event

Retrieve one event with its full payload and every delivery attempt.

Query Parameters

idstringrequired

The event id

Example: "evt_c421c1ed"

Request
GET/event
curl --location 'https://api.ledgr.dev/v1/event' \
--header 'Authorization: {api_key}'
Response

The event and its deliveries

{
  "event": {
    "data": {
      "amount": 102,
      "currency_code": "USD",
      "transaction_group_id": "trx-grp_..."
    },
    "type": "transaction.posted",
    "event_id": "evt_c421c1ed"
  },
  "status": "success",
  "deliveries": [
    {
      "status": "succeeded",
      "attempts": 1,
      "delivery_id": "whd_...",
      "response_status": 200
    }
  ]
}