API Reference / Strategy - Roadmaps
Remove milestone from quarter
delete
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: removeMilestone
Deletes a milestone from a roadmap quarter
Example request
curl -X DELETE "https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/1/quarters/string/milestones/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
quarter | string | yes | — |
milestoneId | integer (int64) | yes | — |
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 removed successfully401— 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.