List
List card aggregate balances
get/v1/cards/aggregate_balances
Get the aggregated card balance across all end-user accounts.
Query Parameters
account_tokenstring
optional
Cardholder to retrieve aggregate balances for.
business_account_tokenstring
optional
Business to retrieve aggregate balances for.
Returns
dataarray of object
has_moreboolean
More data exists.
Request example Request
curl https://api.lithic.com/v1/cards/aggregate_balances \
-H "Authorization: $LITHIC_API_KEY"
200 Example
{
"data": [
{
"available_amount": 0,
"created": "2019-12-27T18:11:19.117Z",
"currency": "currency",
"last_card_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"last_transaction_event_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"last_transaction_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"pending_amount": 0,
"total_amount": 0,
"updated": "2019-12-27T18:11:19.117Z"
}
],
"has_more": true
}