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

NameTypeRequiredDescription
id integer (int64) yes

Request body

application/json

FieldTypeRequiredDescription
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

FieldTypeDescription
success boolean
message string
data RoadmapResponse Roadmap with quarters, milestones, and scope information

Status codes

  • 200 — Roadmap updated successfully
  • 400 — Invalid request body
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Roadmap not found
  • 429 — —

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.