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
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
quarter | string | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
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
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | RoadmapResponse | Roadmap with quarters, milestones, and scope information |
Status codes
200— Quarter updated successfully400— Invalid quarter value or request body401— Not authenticated403— Insufficient permissions to access strategy pillar404— Roadmap or quarter 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.