list_records
Retrieve records from a specified datasheet with optional pagination, field filtering, sorting, and formula-based filtering for precise data access and organization.
Instructions
Read the records from a specified datasheet with support for pagination, field filtering, and sorting options.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | The returned record results are limited to the specified fields by name. Multiple fields should be separated by commas without spaces (e.g. 'field1,field2,field3'). | |
filterByFormula | No | Filter the records by a formula. The formula should be in the format accepted by AITable, this is useful for filtering records based on specific criteria. e.g. '{field1}="value1"' or 'AND({field1}="value1", {field2}="value2")'. | |
node_id | Yes | The ID of the datasheet to fetch records from. | |
pageNum | No | Specifies the page number of the page, which is used in conjunction with the pageSize parameter. | |
pageSize | No | How many records are returned per page. | |
sort | No | Sort the returned records. | |
viewId | No | When the viewId is explicitly specified, all records in the specified view will be returned in turn according to the sorting in the specified view. |