Update App Field Order

Reorder fields in an app

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredThe app to update
field_idsarrayRequiredArray of field IDs in desired order

Examples

MCP Tool Call

{
  "name": "tape_updateAppFieldOrder",
  "arguments": {
    "app_id": 12345,
    "field_ids": "example",
    "count_only": true,
    "ids_only": true
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/tape/updateAppFieldOrder \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "app_id": 12345,
  "field_ids": "example",
  "count_only": true,
  "ids_only": true
}'