Skip to main content
GET
/
cases
/
{case_id}
Get a single case
curl --request GET \
  --url https://eris.devops.truu.ai/api/v1/external/cases/{case_id} \
  --header 'X-API-Key: <api-key>'
{
  "case_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "threat_type": "<string>",
  "threat_brief": "<string>",
  "event_ids": [
    "<string>"
  ],
  "case_state": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "closed_at": "2023-11-07T05:31:56Z",
  "user": {
    "name": "<string>",
    "email": "<string>",
    "is_active": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.truu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Domain-scoped API key. Generate and manage keys from the API Keys page in Settings.

Accepted in two forms:

  • X-API-Key: <key> header (preferred)
  • Authorization: Bearer <key> header (also accepted)

Path Parameters

case_id
string<uuid>
required

Response

Case detail

case_id
string<uuid>
threat_type
string | null

Case classification from the AI judge (Predict / inference pipeline). Known values: threat, insider_threat, identity_vulnerability. Older or demo rows may still carry legacy strings until backfilled.

threat_brief
string | null
event_ids
string[]
case_state
string

Lifecycle state of a case:

  • discover — Vetted by the AI judge, ready for triage
  • pending_investigation — Swiped; investigation pending
  • investigating — Investigation underway
  • enforced — An enforcement action has been taken
  • closed — Case closed
created_at
string<date-time> | null
updated_at
string<date-time> | null
closed_at
string<date-time> | null
user
object