Get Record
Get record by ID with field values
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
record_id | number | Required | The record ID |
Optional Flags
| Parameter | Type | Required | Description | Options |
|---|---|---|---|---|
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_getRecord",
"arguments": {
"record_id": 12345,
"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/getRecord \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"record_id": 12345,
"field_ids": "value",
"field_types": "value",
"field_values_only": true,
"summary_only": true
}'