Update App Field Order
Reorder fields in an app
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | The app to update |
field_ids | array | Required | Array 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
}'