API Reference / Strategy - Sprints
Link initiatives to sprint
put
https://api.intelig.ai/api/v1/intelig/strategy/sprints/{id}/initiatives
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: linkInitiatives
Replaces the set of initiatives linked to this sprint with the provided list of initiative IDs
Example request
curl -X PUT "https://api.intelig.ai/api/v1/intelig/strategy/sprints/1/initiatives" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"initiativeIds": [
1,
2,
3
]
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
initiativeIds | integer[] | yes | List of initiative IDs to link to the sprint Example: [1,2,3] |
Response 200
application/json · ApiResponseSprintDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | SprintDto | — |
Status codes
200— Initiatives linked to sprint successfully400— Invalid request body or initiative IDs401— Not authenticated403— Insufficient permissions to access strategy pillar404— Sprint 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.