API Reference / Knowledge - Action Items
List action items
get
https://api.intelig.ai/api/v1/intelig/knowledge/action-items
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: listActionItems
Lists action items for the current organization with optional filtering by status, assignee, contributor, and date range. Supports pagination.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/knowledge/action-items?pageable=string" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
status | string | no | — |
assignee | string | no | — |
contributorIds | integer[] | no | — |
from | string (date) | no | — |
to | string (date) | no | — |
scopeType | string | no | — |
pageable | Pageable | yes | — |
Response 200
application/json · ApiResponsePageActionItemDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | PageActionItemDto | — |
Status codes
200— Action items 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.