API Reference / Strategy - Sprints

Create a sprint

post https://api.intelig.ai/api/v1/intelig/strategy/sprints

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

Creates a new sprint with the specified start and end dates for tracking work periods

Example request

curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/sprints" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Sprint 12",
    "startDate": "2026-02-17",
    "endDate": "2026-03-02"
  }'

Request body

application/json

FieldTypeRequiredDescription
name string no Optional sprint name. Defaults to 'Sprint N' when omitted. Example: Sprint 12
startDate string (date) yes Sprint start date Example: 2026-02-17
endDate string (date) yes Sprint end date Example: 2026-03-02

Response 201

application/json · ApiResponseSprintDto

FieldTypeDescription
success boolean
message string
data SprintDto

Status codes

  • 201 — Sprint created successfully
  • 400 — Invalid date range or request body
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 409 — Sprint dates overlap with an existing sprint
  • 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.