API Reference / Strategy - Roadmaps
Update roadmap details
patch
https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/{id}
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: updateRoadmap
Partially updates a roadmap's name or linked vision
Example request
curl -X PATCH "https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": 2026,
"visionId": 2
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
name | string | no | Updated roadmap name Example: 2026 |
visionId | integer (int64) | no | Updated vision ID to associate with Example: 2 |
Response 200
application/json · ApiResponseRoadmapResponse
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | RoadmapResponse | Roadmap with quarters, milestones, and scope information |
Status codes
200— Roadmap updated successfully400— Invalid request body401— Not authenticated403— Insufficient permissions to access strategy pillar404— Roadmap 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.