Get Field
Get a single field config by label, field_id, or external_id. Requires: app_id + one identifier.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | The app ID containing the field |
label | string | Optional | Field label (case-insensitive) |
field_id | number | Optional | Field ID |
external_id | string | Optional | External 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"
}'