API Reference / Strategy - Roadmaps

Link initiative to quarter

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

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

Associates an existing initiative with a roadmap quarter for planning and tracking purposes

Example request

curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/1/quarters/string/initiatives" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "initiativeId": 42,
    "displayOrder": 1
  }'

Path parameters

NameTypeRequiredDescription
id integer (int64) yes
quarter string yes

Request body

application/json

FieldTypeRequiredDescription
initiativeId integer (int64) yes ID of the initiative to link Example: 42
displayOrder integer (int32) no Display order within the quarter Example: 1

Response 200

application/json · ApiResponseRoadmapResponse

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

Status codes

  • 200 — Initiative linked to quarter successfully
  • 400 — Invalid request body
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Roadmap, quarter, or initiative not found
  • 409 — Initiative already linked to this quarter
  • 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.