Add App Field
Add a new field to an existing app
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | App ID |
type | string | Required | Field type |
config | object | Required | Field configuration |
Examples
MCP Tool Call
{
"name": "podio_addAppField",
"arguments": {
"app_id": 12345,
"type": "example",
"config": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/addAppField \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"type": "example",
"config": "example"
}'