API Reference / Strategy - Roadmaps

Update quarter details

patch https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/{id}/quarters/{quarter}

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: updateQuarter

Updates a quarter's theme and objectives within a roadmap

Example request

curl -X PATCH "https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/1/quarters/string" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "theme": "Platform Stability",
    "objectives": "Reduce P1 incidents by 50%, improve deployment frequency"
  }'

Path parameters

NameTypeRequiredDescription
id integer (int64) yes
quarter string yes

Request body

application/json

FieldTypeRequiredDescription
theme string no Quarter theme or focus area Example: Platform Stability
objectives string no Quarter objectives description Example: Reduce P1 incidents by 50%, improve deployment frequency

Response 200

application/json · ApiResponseRoadmapResponse

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

Status codes

  • 200 — Quarter updated successfully
  • 400 — Invalid quarter value or request body
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Roadmap or quarter 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.