API Reference / agent-controller

Acknowledge a finding

post https://api.intelig.ai/api/v1/intelig/agents/findings/{id}/acknowledge

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: acknowledgeFinding

Marks the finding as seen and drops it out of the unread count. It stays readable in the inbox. Requires the `agent:write` scope.

Example request

curl -X POST "https://api.intelig.ai/api/v1/intelig/agents/findings/1/acknowledge" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
id integer (int64) yes

Response 200

application/json · ApiResponseAgentFindingResponse

FieldTypeDescription
success boolean
message string
data AgentFindingResponse

Status codes

  • 200 — OK
  • 401 — —
  • 404 — Not Found
  • 429 — —

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.