list_transactions
Retrieve booked transactions with client-side filtering by number, date, or voided status. Scans up to 5000 records.
Instructions
List booked transactions. transactionNo/voucherNo filters are applied CLIENT-SIDE (Billy silently ignores them as query params) by scanning up to 5000 records — bound with dates when possible.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (1-based) | |
| verbose | No | Return the full Billy response. Default false: compact records with key fields only (saves ~90% context) | |
| isVoided | No | Filter by voided status (client-side) | |
| pageSize | No | Records per page (max 1000, default 50) | |
| voucherNo | No | Exact voucher number (client-side scan) | |
| maxEntryDate | No | Entry date <= this (client-side) | |
| minEntryDate | No | Entry date >= this (client-side) | |
| transactionNo | No | Exact transaction number (client-side scan) |