Update App Order
Reorder apps in a workspace
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
space_id | number | Required | Space ID |
app_ids | array | Required | App IDs in desired order |
Examples
MCP Tool Call
{
"name": "podio_updateAppOrder",
"arguments": {
"space_id": 12345,
"app_ids": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/updateAppOrder \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"space_id": 12345,
"app_ids": "example"
}'