API Reference / Strategy - Themes
Create a new theme
post
https://api.intelig.ai/api/v1/intelig/strategy/themes
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: createTheme
Creates a strategic theme with name and description for organizing initiatives into logical groups
Example request
curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/themes" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Platform Modernization",
"description": "Modernize core platform infrastructure for scalability"
}' Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
name | string | yes | Theme name (max 100 characters) Example: Platform Modernization |
description | string | no | Theme description (max 500 characters) Example: Modernize core platform infrastructure for scalability |
Response 200
application/json · ApiResponseThemeDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | ThemeDto | Strategic theme response |
Status codes
200— Theme created successfully400— Invalid request body or validation failure401— Not authenticated403— Insufficient permissions to access strategy pillar429— —
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.