API Reference / Strategy - Initiatives

Move initiative to theme

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

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

Reassigns an initiative to a different strategic theme for organizational grouping

Example request

curl -X PATCH "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/1/theme" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "themeId": 7
  }'

Path parameters

NameTypeRequiredDescription
id integer (int64) yes

Request body

application/json

FieldTypeRequiredDescription
themeId integer (int64) yes ID of the target theme Example: 7

Response 200

application/json · ApiResponseInitiativeDto

FieldTypeDescription
success boolean
message string
data InitiativeDto Initiative details response

Status codes

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