API Reference / Knowledge - Decisions
List decisions
get
https://api.intelig.ai/api/v1/intelig/knowledge/decisions
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: listDecisions
Lists decisions extracted from meeting transcripts for the current organization. Supports optional date range filtering and pagination.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/knowledge/decisions?pageable=string" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
from | string (date) | no | — |
to | string (date) | no | — |
pageable | Pageable | yes | — |
Response 200
application/json · ApiResponsePageDecisionDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | PageDecisionDto | — |
Status codes
200— Decisions returned successfully401— Organization context not set403— Insufficient permissions for Knowledge pillar429— —
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.