Get All Apps
List all apps the user can access
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | number | Optional | Max apps (default: 30) |
offset | number | Optional | Pagination offset |
Optional Flags
| Parameter | Type | Required | Description |
|---|---|---|---|
summary_only | boolean | Optional | Return 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
}'