API Reference / Knowledge - Action Items
List overdue action items
get
https://api.intelig.ai/api/v1/intelig/knowledge/action-items/overdue
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: listOverdueActionItems
Lists action items that are past their due date and not yet completed for the current organization. Supports pagination.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/knowledge/action-items/overdue?pageable=string" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
pageable | Pageable | yes | — |
Response 200
application/json · ApiResponsePageActionItemDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | PageActionItemDto | — |
Status codes
200— Overdue 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.