---
title: "Update a sprint schedule by ID"
method: PATCH
path: "/api/v1/sprint/{sprintScheduleId}"
tags: ["content-allocation"]
---

# Update a sprint schedule by ID

`PATCH /api/v1/sprint/{sprintScheduleId}`

## Path parameters

- `sprintScheduleId` string, uuid, required

## Request body

- SprintScheduleUpdateRequestDTO
  - `dueDate` string, date-time — Due date of the sprint (will be transformed to end of day in UTC). Must be between tomorrow and 30 days from now.
  - `startDate` string, date-time — Optional new planned start date (ISO-8601). Transformed to start of day UTC. Cannot be in the past. Omit to leave unchanged.
  - `title` string — The updated title for the sprint schedule

## Response `201`

- SprintScheduleUpdateResponseDTO
  - `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/:sprintScheduleId/patch.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)
