Get Field

Get a single field config by label, field_id, or external_id. Requires: app_id + one identifier.

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredThe app ID containing the field
labelstringOptionalField label (case-insensitive)
field_idnumberOptionalField ID
external_idstringOptionalExternal ID

Examples

MCP Tool Call

{
  "name": "tape_getField",
  "arguments": {
    "app_id": 12345,
    "label": "example",
    "field_id": 12345,
    "external_id": "example"
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/tape/getField \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "app_id": 12345,
  "label": "example",
  "field_id": 12345,
  "external_id": "example"
}'