API Reference / Knowledge - Decisions

Get decision by ID

get https://api.intelig.ai/api/v1/intelig/knowledge/decisions/{id}

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

Retrieves a single decision by its ID, including content, context, and the source transcript reference.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/knowledge/decisions/1" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
id integer (int64) yes

Response 200

application/json · ApiResponseDecisionDto

FieldTypeDescription
success boolean
message string
data DecisionDto Extracted decision details

Status codes

  • 200 — Decision returned successfully
  • 401 — Organization context not set
  • 403 — Insufficient permissions for Knowledge pillar
  • 404 — Decision 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.