Update App Field
Update an existing field configuration
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | App ID |
field_id | number | Required | Field ID |
config | object | Required | Field config updates |
Examples
MCP Tool Call
{
"name": "podio_updateAppField",
"arguments": {
"app_id": 12345,
"field_id": 12345,
"config": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/updateAppField \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"field_id": 12345,
"config": "example"
}'