Get All Apps

List all apps the user can access

Parameters

ParameterTypeRequiredDescription
limitnumberOptionalMax apps (default: 30)
offsetnumberOptionalPagination offset

Optional Flags

ParameterTypeRequiredDescription
summary_onlybooleanOptionalReturn only app_id and name

Examples

MCP Tool Call

{
  "name": "podio_getAllApps",
  "arguments": {
    "limit": 12345,
    "offset": 12345,
    "summary_only": true
  }
}

REST API

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