List Bank Account Transactions
Returns the transactions Bolta fetched from the bank, in the order they changed in Bolta. This is not transaction time order. Newly loaded or visible-again transactions come as ACTIVE. Transactions hidden from the dashboard come as REMOVED with only the id. The same id can arrive more than once, so apply items in the order you receive them: overwrite or delete by id.
hasMore can be true even when items is empty, so decide whether to continue from hasMore. The API fills nextCursor on the last page too. Save it and pass it on your next call to receive only the transactions that changed since then. Transactions changed in the last 5 minutes wait for a later call. You need a Standard plan or higher, and the call deducts no points. Bank account transactions guide
Authorizations
Base64-encode your API key and pass it. Enter the API key as the username and leave the password empty.
Query Parameters
Start of the transaction date range, inclusive. Use a YYYY-MM-DD date in KST.
End of the transaction date range, inclusive. Use a YYYY-MM-DD date in KST. The API rejects a to earlier than from with 400.
Account id from the account list response. The API rejects an unknown account or another business's account with 404.
Transaction type
Transaction type. DEPOSIT: Deposit. WITHDRAW: Withdrawal. OTHER: Other. The bank reported zero for both the deposit and withdrawal amounts, so amount is 0.
DEPOSIT, WITHDRAW, OTHER nextCursor from the previous response. Send it exactly as received. If you change the filters, start over without a cursor.
Maximum number of items per call
1 <= x <= 500Response
Lookup succeeded
Bank account transaction list result
Transactions in the order they changed in Bolta, not in transaction time order.
A transaction item whose shape depends on status. ACTIVE carries every field; REMOVED carries only status and id.
- Option 1
- Option 2
Cursor for the next call. The API fills it on the last page too, so save it and pass it on your next collection.
Whether more items are available right now. Can be true even when items is empty.
