Get Records By View
Get records from a specific view
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
view_id | number | Required | The view to retrieve |
limit | number | Optional | Max records to return |
cursor | string | Optional | Pagination cursor |
Examples
MCP Tool Call
{
"name": "tape_getRecordsByView",
"arguments": {
"view_id": 12345,
"limit": 12345,
"cursor": "example",
"count_only": true,
"field_ids": "value",
"field_values_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/getRecordsByView \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"view_id": 12345,
"limit": 12345,
"cursor": "example",
"count_only": true,
"field_ids": "value",
"field_values_only": true
}'