Get App
Get app definition, fields, or specific field
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | App ID |
Optional Flags
| Parameter | Type | Required | Description | Options |
|---|---|---|---|---|
field_id | number | Optional | Get single field by ID | |
summary_only | boolean | Optional | Config only, no fields | |
fields_only | boolean | Optional | Fields array only | |
field_type | string | Optional | Filter field types | allbasiccalculation |
Examples
MCP Tool Call
{
"name": "podio_getApp",
"arguments": {
"app_id": 12345,
"field_id": 10,
"summary_only": true,
"fields_only": true,
"field_type": "value"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/getApp \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"field_id": 10,
"summary_only": true,
"fields_only": true,
"field_type": "value"
}'