API Reference / Strategy - Roadmaps
Update a milestone
patch
https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/{id}/quarters/{quarter}/milestones/{milestoneId}
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: updateMilestone
Updates a milestone's name, description, target date, type, or status within a quarter
Example request
curl -X PATCH "https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/1/quarters/string/milestones/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "GA Release",
"description": "General availability release of the mobile app",
"targetDate": "2026-04-01",
"milestoneType": "RELEASE"
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
quarter | string | yes | — |
milestoneId | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
name | string | no | Updated milestone name Example: GA Release |
description | string | no | Updated milestone description Example: General availability release of the mobile app |
targetDate | string (date) | no | Updated target date Example: 2026-04-01 |
milestoneType | string | no | Updated milestone type Example: RELEASE |
status | string | no | Updated milestone status Example: ACHIEVED |
Response 200
application/json · ApiResponseRoadmapResponse
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | RoadmapResponse | Roadmap with quarters, milestones, and scope information |
Status codes
200— Milestone updated successfully400— Invalid request body or validation failure401— Not authenticated403— Insufficient permissions to access strategy pillar404— Roadmap, quarter, or milestone 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.