Update App
Update app configuration and fields
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | App ID |
config | object | Optional | App config updates |
fields | array | Optional | Fields to add or update |
fields_to_delete | array | Optional | Fields to remove |
Optional Flags
| Parameter | Type | Required | Description |
|---|---|---|---|
silent | boolean | Optional | Suppress notifications |
return_full_response | boolean | Optional | Return full app JSON |
Examples
MCP Tool Call
{
"name": "podio_updateApp",
"arguments": {
"app_id": 12345,
"config": "example",
"fields": "example",
"fields_to_delete": "example",
"silent": true,
"return_full_response": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/updateApp \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"config": "example",
"fields": "example",
"fields_to_delete": "example",
"silent": true,
"return_full_response": true
}'