API Reference / Strategy - Sprints
Update sprint goals
put
https://api.intelig.ai/api/v1/intelig/strategy/sprints/{id}/goals
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: updateGoals
Sets or replaces the sprint goals content, stored as rich text HTML
Example request
curl -X PUT "https://api.intelig.ai/api/v1/intelig/strategy/sprints/1/goals" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"goals": "Complete authentication module and begin API redesign"
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
goals | string | no | Sprint goals text Example: Complete authentication module and begin API redesign |
Response 200
application/json · ApiResponseSprintDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | SprintDto | — |
Status codes
200— Sprint goals updated successfully401— 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.