List Records
List records in an app with pagination
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | The app to list records from |
limit | number | Optional | Max records to return (default 30) |
cursor | string | Optional | Pagination cursor for next page |
Optional Flags
| Parameter | Type | Required | Description | Options |
|---|---|---|---|---|
count_only | boolean | Optional | Return count only | |
field_ids | array | Optional | Filter to specific fields by field_id or external_id | |
field_types | string | Optional | Filter fields by type: all (default), basic (exclude calculations), calculation (only calculations) | allbasiccalculation |
field_values_only | boolean | Optional | Return field values only | |
summary_only | boolean | Optional | Return metadata only (no fields) |
Examples
MCP Tool Call
{
"name": "tape_listRecords",
"arguments": {
"app_id": 12345,
"limit": 12345,
"cursor": "example",
"count_only": true,
"field_ids": "value",
"field_types": "value",
"field_values_only": true,
"summary_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/listRecords \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"limit": 12345,
"cursor": "example",
"count_only": true,
"field_ids": "value",
"field_types": "value",
"field_values_only": true,
"summary_only": true
}'