Get Views

List all views on an app

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredApp ID
include_standard_viewsbooleanOptionalInclude table/badge/calendar views

Examples

MCP Tool Call

{
  "name": "podio_getViews",
  "arguments": {
    "app_id": 12345,
    "include_standard_views": true
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/podio/getViews \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "app_id": 12345,
  "include_standard_views": true
}'