API Reference / Strategy - Roadmaps

Add milestone to quarter

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

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

Creates a new milestone within a roadmap quarter for tracking key deliverables and target dates

Example request

curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/1/quarters/string/milestones" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Beta Release",
    "description": "Public beta release of the mobile app",
    "targetDate": "2026-03-15",
    "milestoneType": "MILESTONE"
  }'

Path parameters

NameTypeRequiredDescription
id integer (int64) yes
quarter string yes

Request body

application/json

FieldTypeRequiredDescription
name string yes Milestone name Example: Beta Release
description string no Milestone description Example: Public beta release of the mobile app
targetDate string (date) no Target date for the milestone Example: 2026-03-15
milestoneType string no Type of milestone One of: MILESTONE, START, STOP Example: MILESTONE
displayOrder integer (int32) no Display order for UI rendering Example: 1

Response 200

application/json · ApiResponseRoadmapResponse

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

Status codes

  • 200 — Milestone added successfully
  • 400 — Invalid request body or validation failure
  • 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.