API Reference / Knowledge - Action Items

Get action item history

get https://api.intelig.ai/api/v1/intelig/knowledge/action-items/{id}/history

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

Returns the full event-store timeline for one action item: creation, content changes, status transitions, contributor and initiative links, and deletion.

Example request

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

Path parameters

NameTypeRequiredDescription
id integer (int64) yes

Response 200

application/json · ApiResponseListActionItemHistoryEntryDto

FieldTypeDescription
success boolean
message string
data ActionItemHistoryEntryDto[]

Status codes

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