API Reference / agent-controller
Count of unacknowledged findings
get
https://api.intelig.ai/api/v1/intelig/agents/findings/unread-count
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getFindingsUnreadCount
How many findings are OPEN or ESCALATED for this organization. Cached for 60 seconds per organization and evicted on any acknowledge, dismiss or escalate, so a count can lag a mutation by up to a minute. Requires the `agent:read` scope.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/agents/findings/unread-count" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Response 200
application/json · ApiResponseLong
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | integer (int64) | — |
Status codes
200— OK401— —404— Not Found429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.