Update App

Update app properties and fields

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredThe app to update
updatesobjectRequiredProps 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_responsebooleanOptionalIf 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
}'