List time entries
keeping_list_entriesFetches time entries from the Keeping API for a date range, supporting single-day and multi-day queries. Preserves original field names for use by write tools.
Instructions
Returns time entries for a date range. Wire shape preserved exactly as returned by the Keeping API — no field renaming — so this tool doubles as schema discovery for Phase 3 write tools. Dates are calendar dates in YYYY-MM-DD; not UTC timestamps. Single-day calls hit GET /{orgId}/time-entries?date=...; multi-day ranges hit GET /{orgId}/report/time-entries?from=...&to=....
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Inclusive end date; defaults to `from` (single day). | |
| from | Yes | Inclusive start date. Calendar date in YYYY-MM-DD; Europe/Amsterdam timezone. | |
| limit | No | ||
| user_id | No | Defaults to the authenticated user. | |
| organisation_id | No | Override KEEPING_ORG_ID; required for multi-org tokens. |