API Reference / Strategy - Sprints

Update sprint settings

patch https://api.intelig.ai/api/v1/intelig/strategy/sprints/settings

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

Flips the sprint_lifecycle_autopilot_enabled flag on the org. When true, the sprint-lifecycle agent runs the end-of-sprint cycle (create next sprint, inherit active initiatives, roll open pinned action items). When false, the agent skips on every trigger.

Example request

curl -X PATCH "https://api.intelig.ai/api/v1/intelig/strategy/sprints/settings" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "sprintLifecycleAutopilotEnabled": true
  }'

Request body

application/json

FieldTypeRequiredDescription
sprintLifecycleAutopilotEnabled boolean no Whether sprints roll over on their own — closing the finished sprint and opening the next one without a human step. Example: true

Response 200

application/json · ApiResponseSprintSettingsResponse

FieldTypeDescription
success boolean
message string
data SprintSettingsResponse

Status codes

  • 200 — OK
  • 401 — —
  • 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.