Get View
Get view definition by ID or name
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | App ID |
view_id_or_name | unknown | Required | View ID, name, or "last" |
Examples
MCP Tool Call
{
"name": "podio_getView",
"arguments": {
"app_id": 12345,
"view_id_or_name": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/getView \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"view_id_or_name": "example"
}'