List Apps
List all apps or filter by workspace
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
workspace_id | number | Optional | Filter by workspace (optional) |
Examples
MCP Tool Call
{
"name": "tape_listApps",
"arguments": {
"workspace_id": 12345,
"summary_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/listApps \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"workspace_id": 12345,
"summary_only": true
}'