List records
knack_list_recordsList an object's records. Knack API: GET /objects/{object_key}/records. Returns the paged envelope { total_pages, current_page, total_records, records: [...] } as-is. Records carry both field_x (formatted) and field_x_raw (structured) values. Page with page / rows_per_page (max 1000), sort with sort_field / sort_order, and filter with the filters object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default 1). | |
| filters | No | Optional Knack filter object, JSON-stringified into the `filters` query param. Shape: { "match": "and"|"or", "rules": [{ "field": "field_1", "operator": "is", "value": "Acme" }] }. Common operators: contains, does not contain, is, is not, starts with, ends with, higher than, lower than, is blank, is not blank. | |
| objectKey | Yes | The Knack object (table) key, e.g. "object_1". | |
| sort_field | No | Field key to sort by, e.g. "field_25". | |
| sort_order | No | Sort direction: "asc" or "desc". | |
| rows_per_page | No | Records per page (1-1000, default 25). |