Find Relatable Records
Search for records to link in a relation field
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
field_id | number | Required | The ID of the relation field |
text | string | Required | The text to search for |
Examples
MCP Tool Call
{
"name": "tape_findRelatableRecords",
"arguments": {
"field_id": 12345,
"text": "example",
"field_ids": "value",
"field_values_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/findRelatableRecords \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"field_id": 12345,
"text": "example",
"field_ids": "value",
"field_values_only": true
}'