Webhook Reports

Get Webhook Callback History

GET /webhook/history

This is useful for tracking webhook calls made to their destinations.

Query Parameters

Name
Type
Description

start

timestamp

start time (>=)

end

timestamp

end time (<=)

event_type

string (optional)

enum ('outcome', 'balance_updated', 'cash_won', 'prize_won')

limit

number (optional)

Page size (default 1000)

next_token

number (optional)

Pagination token to get next set of results.

Response

{
  "status": "success",
  "calls": [
    {
      "timestamp": timestamp,
      "url": string,
      "payload": object
    }, 
    {
    ...
    }
  ],
  "next_token": string,
  "limit": number,
  "is_all": boolean //"true" or "false"
}

Last updated

Was this helpful?