API Reference / Strategy - Vision
Get vision history for scope
get
https://api.intelig.ai/api/v1/intelig/strategy/vision/history
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getVisionHistory
Returns the full history of visions for a given scope, including both active and archived visions ordered chronologically
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/vision/history" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
scopeType | string | no | — |
scopeId | integer (int64) | no | — |
Response 200
application/json · ApiResponseVisionHistoryDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | VisionHistoryDto | Vision history response containing all versions of a vision |
Status codes
200— Vision history returned successfully400— 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.