v1
latestOpenAPI 3.0.22026-07-26123510445.2 KBList Issuing Balances Transactions
Returns a list of transactions that have contributed to the issuing account balance (e.g., charges, fee, and so forth).
Query parameters
The maximum number of items to return per page. This number can be between 1 - 100
The page number to retrieve the next set of items. The number has to be greater than 1.
Exclusive start time used to filter by create_time. ISO 8601 format.
Exclusive end time used to filter by create_time. ISO 8601 format.
Transaction type filter for issuing balance transactions.
Transaction status filter for issuing balance transactions.
Currency filter. Three-letter ISO 4217 currency code.
Unique Identifier for transaction
Transaction ID filter (long ID).
Headers
Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.
Response
OK - Balances transactions returned successfully.
Example response
{
"total_pages": 10,
"total_items": 105,
"data": [
{
"transaction_id": "5135e6cc-28b6-4889-81dc-3b86a09e1395",
"short_transaction_id": "CT2024-03-01",
"account_id": "72970a7c-7921-431c-b95f-3438724ba16f",
"balance_id": "72970a7c-7921-431c-b95f-3438724ba16f",
"transaction_type": "DEPOSIT",
"currency": "USD",
"amount": "100.02",
"create_time": "2024-03-01T00:00:00+08:00",
"complete_time": "2024-03-01T00:00:00+08:00",
"transaction_status": "PENDING",
"ending_balance": "100.02",
"description": "Creation card, fee"
}
]
}