API Reference / Strategy - Sprints

Update sprint retro notes

put https://api.intelig.ai/api/v1/intelig/strategy/sprints/{id}/retro-notes

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

Sets or replaces the sprint retrospective notes content, stored as rich text HTML

Example request

curl -X PUT "https://api.intelig.ai/api/v1/intelig/strategy/sprints/1/retro-notes" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "retroNotes": "Good velocity this sprint. Need to improve code review turnaround."
  }'

Path parameters

NameTypeRequiredDescription
id integer (int64) yes

Request body

application/json

FieldTypeRequiredDescription
retroNotes string no Retrospective notes text Example: Good velocity this sprint. Need to improve code review turnaround.

Response 200

application/json · ApiResponseSprintDto

FieldTypeDescription
success boolean
message string
data SprintDto

Status codes

  • 200 — Retrospective notes updated successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Sprint 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.