API Reference / Knowledge - Intelligence

Generate intelligence via AI

post https://api.intelig.ai/api/v1/intelig/knowledge/artifacts/{artifactId}/intelligence/generate

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

Triggers AI-powered intelligence extraction from a meeting transcript, producing decisions, action items, key topics, and summaries. Overwrites any previously cached intelligence for this artifact.

Example request

curl -X POST "https://api.intelig.ai/api/v1/intelig/knowledge/artifacts/1/intelligence/generate" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
artifactId integer (int64) yes

Response 200

application/json · ApiResponseKnowledgeIntelligenceResponseDto

FieldTypeDescription
success boolean
message string
data KnowledgeIntelligenceResponseDto AI-generated intelligence for a knowledge artifact

Status codes

  • 200 — Intelligence generated successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions for Knowledge pillar
  • 404 — Artifact not found or has no transcript
  • 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.