API Reference / Strategy - Vision
Get active vision for scope
get
https://api.intelig.ai/api/v1/intelig/strategy/vision/active
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getActiveVision
Returns the currently active strategic vision for the specified scope type and optional scope ID. Returns empty data if no active vision exists.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/vision/active" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
scopeType | string | no | — |
scopeId | integer (int64) | no | — |
Response 200
application/json · ApiResponseVisionDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | VisionDto | Strategic vision response with scope, priorities, and timeline |
Status codes
200— Active vision found and returned400— Invalid scope type parameter401— 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.