Overview
Retrieves intelligence inbox with cases and alerts grouped by status and priority.
Endpoint
GET http://api.gu1.ai/intelligence/inbox
Query Parameters
Filter by status: OPEN, IN_PROGRESS, PENDING_REVIEW, CLOSED, ESCALATED
Filter by priority: LOW, MEDIUM, HIGH, CRITICAL
Filter by assigned user/team ID
Response
{
"summary": {
"totalCases": 45,
"totalAlerts": 128,
"byStatus": {
"OPEN": {
"count": 12,
"byPriority": {
"CRITICAL": 3,
"HIGH": 5,
"MEDIUM": 4
}
}
}
},
"cases": [],
"alerts": []
}
See Also