API Reference / Strategy - Vision
Archive a vision
post
https://api.intelig.ai/api/v1/intelig/strategy/vision/{id}/archive
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: archiveVision
Archives a vision, removing it from active use while preserving it in the history for audit purposes
Example request
curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/vision/1/archive" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
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— Vision archived successfully401— Not authenticated403— Insufficient permissions to access strategy pillar404— Vision not found429— —
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.