Returns a paginated list of real-time credit balance snapshots for a subscription. Each item in the list is a ledger_account_balance object, identified by a unique combination of subscription_id, unit_id, unit_type.
Sample Request
Sample Result[JSON]
URL Format
Input Parameters
Specifies the maximum number of resources to return per page.
Default and Hard Cap
- Optional parameter; if omitted, a server-defined default is applied.
- Values exceeding the server's maximum limit are capped (clamped) to the allowed maximum.
Example → limit = "50"
Opaque cursor indicating the current position in the result set for pagination.
Behavior
- To fetch the next page, pass the
next_offsetvalue returned in the previous response. - The value is opaque and must not be parsed, modified, or constructed manually.
Example → offset = "["1771176208000","96000000006"]"
Filter Params
Returns
This attribute is returned only if more resources are present. To fetch the next set of resources use this value for the input parameter offset.
Resource object representing a credit balance snapshot. The response is the standard
Chargebee list envelope: { "list": [{ "ledger_account_balance": { ... } }, ...], "next_offset": "..." },
where each list item wraps a single ledger_account_balance under its resource name.