API Reference / Strategy - Themes

Update a theme

patch https://api.intelig.ai/api/v1/intelig/strategy/themes/{id}

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: updateTheme

Partially updates a theme's name, description, or display order

Example request

curl -X PATCH "https://api.intelig.ai/api/v1/intelig/strategy/themes/1" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Platform Modernization v2",
    "description": "Modernize and scale the core platform",
    "displayOrder": 2
  }'

Path parameters

NameTypeRequiredDescription
id integer (int64) yes

Request body

application/json

FieldTypeRequiredDescription
name string yes Updated theme name (max 100 characters) Example: Platform Modernization v2
description string no Updated theme description (max 500 characters) Example: Modernize and scale the core platform
displayOrder integer (int32) no Display order for UI rendering Example: 2

Response 200

application/json · ApiResponseThemeDto

FieldTypeDescription
success boolean
message string
data ThemeDto Strategic theme response

Status codes

  • 200 — Theme updated successfully
  • 400 — Invalid request body or validation failure
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Theme 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.