API Reference / Knowledge - Action Items
Update an action item
patch
https://api.intelig.ai/api/v1/intelig/knowledge/action-items/{id}
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: updateActionItem
Partially updates an action item's content, assignee, contributor, due date, or status. At least one field must be provided.
Example request
curl -X PATCH "https://api.intelig.ai/api/v1/intelig/knowledge/action-items/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"content": "Ship the semantic matcher and flip the flag",
"assigneeName": "Levi Garner",
"contributorId": 1,
"dueDate": "2026-09-30"
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
content | string | no | New content for the action item. Example: Ship the semantic matcher and flip the flag |
assigneeName | string | no | New assignee name, as written. Example: Levi Garner |
contributorId | integer (int64) | no | Contributor to link as the assignee. Example: 1 |
dueDate | string (date) | no | New due date (ISO date). Example: 2026-09-30 |
status | string | no | New status. One of: PENDING, IN_PROGRESS, COMPLETED, CANCELLED Example: COMPLETED |
initiativeId | integer (int64) | no | Initiative to link. Send -1 to unlink. Example: 57 |
Response 200
application/json · ApiResponseActionItemDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | ActionItemDto | Action item details |
Status codes
200— Action item updated successfully400— No updates provided in request body401— Organization context not set403— Insufficient permissions for Knowledge pillar404— Action item not found429— —
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.