list_cash_transactions
Retrieve cash account transactions, newest pages first. Supports pagination with cursor, filtering by account ID and optional page token. Lists transaction type, direction, status, and amounts.
Instructions
List transactions of a cash account, newest pages first.
Calls GET /api/v1/money/accounts/cash/{accountId}/transactions. Paginated by cursor: pass pagination.nextPageToken from one call as page_token to fetch the next page; nextPageToken null (or hasNext false) means the last page. Amounts are decimal strings in ISO 4217 currencies; postedAt is an ISO 8601 timestamp. transactionType is one of card, internalTransfer, bankTransfer, balanceAdjustment; direction is debit or credit; status is one of failed, authorized, settled, rejected, returned, expired, unknown. Rate limit: 60 requests per 60 seconds (default shared quota).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size; the API allows at most 500. | |
| account_id | Yes | Cash account id (UUID), from the Cash entries of the balance tools. | |
| page_token | No | Opaque cursor from a previous page's pagination.nextPageToken. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||