Get Apps By Space
List all apps in a workspace
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
space_id | number | Required | Space ID |
Optional Flags
| Parameter | Type | Required | Description |
|---|---|---|---|
summary_only | boolean | Optional | Return only app_id and name |
Examples
MCP Tool Call
{
"name": "podio_getAppsBySpace",
"arguments": {
"space_id": 12345,
"summary_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/getAppsBySpace \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"space_id": 12345,
"summary_only": true
}'