list_records
Fetch a paginated list of records from any model, scoped to an action's domain or with context options like language and archived records.
Instructions
Return a paginated list of records visible in the list view for a model. Pass action_id to scope results to the action's domain (e.g. only draft orders). Pass context to control read behaviour — e.g. {lang: "fr_FR"} returns translated field values, {active_test: false} includes archived records. Returns {total, offset, limit, records[]} with the columns from the list view.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| model | Yes | ||
| order | No | ||
| offset | No | ||
| context | No | ||
| action_id | No |