---
title: "Create a new sprint schedule"
method: POST
path: "/api/v1/sprint"
tags: ["content-allocation"]
---

# Create a new sprint schedule

`POST /api/v1/sprint`

## Request body

- SprintScheduleCreateRequestDTO
  - `assignedTeamId` string, uuid, required — UUID of the team assigned to this sprint
  - `assignedTrackId` string, required — ObjectId of the track assigned to this sprint
  - `dueDate` string, date-time, required — Due date of the sprint (will be transformed to end of day in UTC)
  - `startDate` string, date-time — Planned start date of the sprint (transformed to start of day in UTC). Defaults to today. Cannot be in the past.
  - `title` string, required — Title of the sprint schedule

## Response `201`

- SprintScheduleCreateResponseDTO
  - `assignedTeamId` string, uuid, required
  - `assignedTrackId` string, required
  - `createdAt` string, date-time, required
  - `deletedAt` string, date-time, nullable
  - `dueDate` string, date-time, required
  - `id` string, uuid, required
  - `lastUpdatedAt` string, date-time, required
  - `startDate` string, date-time, nullable — Planned start date of the sprint (start of day UTC). Null for sprints created before start dates were persisted; read paths report createdAt for those.
  - `title` string, required
  - `userId` string, uuid, required

## Changes

- **2026-09-04** `37a0dba85517` — 2 info
  - added the new optional request property `startDate`
  - added the optional property `startDate` to the response with the `201` status

[Change history](https://skmtc.dev/wejam/apis/jam/changes/api/v1/sprint/post.md)

---

[API](https://skmtc.dev/wejam/apis/jam.md) · [All operations](https://skmtc.dev/wejam/apis/jam/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/wejam/jam/revisions/37a0dba85517/schema)
