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