API Reference / Knowledge - Artifacts
Update artifact title
patch
https://api.intelig.ai/api/v1/intelig/knowledge/artifacts/{id}/title
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: updateArtifactTitle
Updates the display title of a knowledge artifact.
Example request
curl -X PATCH "https://api.intelig.ai/api/v1/intelig/knowledge/artifacts/1/title" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Q3 planning — execution review"
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
title | string | yes | New display title for the artifact. The AI-assigned title is replaced; the source system's original title is preserved separately. Example: Q3 planning — execution review |
Response 200
application/json · ApiResponseVoid
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | object | — |
Status codes
200— Title updated successfully400— Title is blank or invalid401— Organization context not set403— Insufficient permissions for Knowledge pillar404— Artifact 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.