List Webhook Events

GET /webhooks/:webhookId/events

Lists all events for a given webhook.

We only keep a trace of those Webhook Events in our system for a retention period of 31 days. Past that, they are discarded, so you cannot see them using List Webhook Events or Get Webhook Event endpoints.

Permissions Required

  • Webhooks:Events:Read

Request Params

The following query parameters can be appended to the url

Response

See Webhook Event Data for more details on potential response formats by webhook event kind.

{
  "items": [
    {
      "id": "wh-xxx-xxxxxxx",
      "kind": "wallet.transfer.confirmed",
      "date": "2023-12-04T10:02:22.280Z",     
      "deliveryFailed": false,
      "deliveryAttempt": 1,
      "timestampSent": 1701684144,
      "status": "200",
      "data": {
        ... // content depending on the kind of events it is
      },
    },
    ...
  ],
  "nextPageToken": "eJxNy8...."
}

Last updated