Create App
Create a new app in a Podio space
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
space_id | number | Required | Space ID |
config | object | Required | App configuration |
fields | array | Optional | Field definitions |
Optional Flags
| Parameter | Type | Required | Description |
|---|---|---|---|
silent | boolean | Optional | Suppress notifications |
Examples
MCP Tool Call
{
"name": "podio_createApp",
"arguments": {
"space_id": 12345,
"config": "example",
"fields": "example",
"silent": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/createApp \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"space_id": 12345,
"config": "example",
"fields": "example",
"silent": true
}'