Update App
Update app properties and fields
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | The app to update |
updates | object | Required | Props to update: name, item_name, description, icon, fields (array), fields_to_delete (array of field_ids). Add field: no field_id. Update field: include field_id. |
return_full_response | boolean | Optional | If true, returns the complete app JSON. If false (default), returns a summary with field change counts. Set to true only when you need the full app data. |
Examples
MCP Tool Call
{
"name": "tape_updateApp",
"arguments": {
"app_id": 12345,
"updates": "example",
"return_full_response": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/updateApp \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"updates": "example",
"return_full_response": true
}'