API Reference / Strategy - Themes

Delete a theme

delete 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: deleteTheme

Deletes a strategic theme. Initiatives under this theme must be moved or removed first.

Example request

curl -X DELETE "https://api.intelig.ai/api/v1/intelig/strategy/themes/1" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
id integer (int64) yes

Response 204

application/json · ApiResponseVoid

FieldTypeDescription
success boolean
message string
data object

Status codes

  • 204 — Theme deleted successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Theme not found
  • 409 — Theme still has associated initiatives
  • 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.