ApiDashboard
Get dashboard activity
Get standalone activity feed for filter-only updates without reloading the entire dashboard.
Authorization
User API Key AuthorizationBearer <token>
User API key (mgw_usr_live_* or mgw_usr_test_*)
In: header
Query Parameters
activity_filter?string
Filter: all, tools, errors, or admin
Default
"all"Value in
"all" | "tools" | "errors" | "admin"Cookie Parameters
access_token?|
Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/dashboard/activity"{
"activity": [
{
"type": "server_created",
"description": "string",
"details": {
"property1": "string",
"property2": "string"
},
"server": "string",
"tool": "string",
"user": "string",
"timestamp": "2019-08-24T14:15:22Z",
"severity": "info",
"latency_ms": 0,
"status": "string"
}
],
"filter": "all",
"generated_at": "2019-08-24T14:15:22Z"
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}Update Visibility
Toggle visibility of a curated app catalog entry (admin action). Args: entry_id: UUID of the catalog entry. session: Database session (injected). service: CuratedAppService instance (injected). visible: New visibility state. Returns: Dict with the new visibility value. Raises: HTTPException: 404 if entry not found.
Get dashboard
Get dashboard data including stats, health, activity, and top servers. Requires admin or owner role.
