Retrieve balance check history for a specific authorizer
| Field | Description |
|---|---|
authorizer_unique_id | The authorizer identifier |
total_count | Total number of history records for this authorizer |
history | Array of history entries (see below) |
next_page_token | Token for fetching the next page (null if no more results) |
has_more | Whether more results are available |
| Field | Description |
|---|---|
run_at | When the balance check was performed |
batch_id | The associated batch request ID |
balance_amount | The balance retrieved (null if failed) |
status | success or failed |
error_message | Error details if the check failed |
limit query parameter to control how many results are returned:
next_page_token from a previous response as the nextPageToken query parameter. Continue fetching until has_more is false or next_page_token is null.Authentication to the API is performed via Bearer Token Authentication. Provide your API key as the bearer token in the Authorization header.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.
The authorizer_unique_id to retrieve history for.
The maximum number of history entries to return. Default is 10, maximum is 100.
1 <= x <= 100A cursor token for pagination. Pass the next_page_token from a previous response to fetch the next page of results.
Authorizer history retrieved successfully
The unique identifier for the authorizer.
Total number of history records for this authorizer.
List of balance check history entries in reverse chronological order.
Indicates whether more results are available beyond this page.
Token for fetching the next page of results. Null if no more results.