ofw_list_expenses
Fetch expense records from OurFamilyWizard using offset pagination. Pass start and max to control the page; the response shows hasMore and nextStart to continue until all expenses are retrieved.
Instructions
List OurFamilyWizard expenses. Offset-paged via start/max. The response leads with its paging state — hasMore and nextStart (null when the list is exhausted) — BEFORE the records, so a truncated or partially-read response still says whether more remain. Never state an expense total or an absence from one page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max | No | Max results (default 20) | |
| start | No | Start offset, 0-based (default 0). To continue a listing, pass the `nextStart` from the previous response. |