Retrieve Authorizer Balance History
Retrieve balance check history for a specific authorizer
Retrieve Authorizer Balance History
Retrieve the balance check history for a specific authorizer. Returns a list of recent balance results in reverse chronological order (most recent first).Use Cases
- Review historical balance data for an authorizer
- Debug failed balance checks
- Analyze balance trends over time
Response Fields
| 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 |
Pagination
Use thelimit query parameter to control how many results are returned:
- Default: 10 entries
- Maximum: 100 entries
next_page_token from a previous response as the next_page_token query parameter. Continue fetching until has_more is false or next_page_token is null.Authorizations
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.
Path Parameters
The authorizer_unique_id to retrieve history for.
Query Parameters
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.
Response
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.
