Skip to main content
GET
http://api.gu1.ai
/
intelligence
/
inbox
Get Intelligence Inbox
curl --request GET \
  --url http://api.gu1.ai/intelligence/inbox \
  --header 'Authorization: Bearer <token>'

Overview

Retrieves intelligence inbox with cases and alerts grouped by status and priority.

Endpoint

GET http://api.gu1.ai/intelligence/inbox

Query Parameters

status
string
Filter by status: OPEN, IN_PROGRESS, PENDING_REVIEW, CLOSED, ESCALATED
priority
string
Filter by priority: LOW, MEDIUM, HIGH, CRITICAL
assignedTo
string
Filter by assigned user/team ID
limit
number
default:"50"
Results per page (1-100)
offset
number
default:"0"
Pagination offset

Response

{
  "summary": {
    "totalCases": 45,
    "totalAlerts": 128,
    "byStatus": {
      "OPEN": {
        "count": 12,
        "byPriority": {
          "CRITICAL": 3,
          "HIGH": 5,
          "MEDIUM": 4
        }
      }
    }
  },
  "cases": [],
  "alerts": []
}

See Also