list_cash_transactions
Retrieve paginated cash account transactions with details like type, direction, status, and timestamps. Supports cursor-based pagination for browsing history.
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 | |||