Get Records By View

Get records from a specific view

Parameters

ParameterTypeRequiredDescription
view_idnumberRequiredThe view to retrieve
limitnumberOptionalMax records to return
cursorstringOptionalPagination 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
}'