Add App Field

Add a new field to an existing app

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredApp ID
typestringRequiredField type
configobjectRequiredField 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"
}'