API Reference / Strategy - Vision
Delete a vision
delete
https://api.intelig.ai/api/v1/intelig/strategy/vision/{id}
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: deleteVision
Soft-deletes a vision by archiving it. Aliased to POST /{id}/archive so DELETE works as integrators expect; the underlying behavior is identical (vision is preserved for audit, not hard-deleted).
Example request
curl -X DELETE "https://api.intelig.ai/api/v1/intelig/strategy/vision/1" \
-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.