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

NameTypeRequiredDescription
id integer (int64) yes

Request body

application/json

FieldTypeRequiredDescription
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

FieldTypeDescription
success boolean
message string
data object

Status codes

  • 200 — Title updated successfully
  • 400 — Title is blank or invalid
  • 401 — Organization context not set
  • 403 — Insufficient permissions for Knowledge pillar
  • 404 — Artifact not found
  • 429 — —

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.