Find Relatable Records

Search for records to link in a relation field

Parameters

ParameterTypeRequiredDescription
field_idnumberRequiredThe ID of the relation field
textstringRequiredThe 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
}'