Start sprint
jira_start_sprintStart a Jira sprint by providing its ID, start date, and end date to move it from future to active, making its issues the current work in flight.
Instructions
Starts a sprint: "future" becomes "active", which is what makes its issues the work in flight and what every board report measures from. Both startDate and endDate are required — Jira will not run a sprint without a window, and this call refuses locally if either is missing. Only a "future" sprint can start, and a board refuses a second active sprint unless parallel sprints are on. If it is rejected, re-read jira_list_sprints: the state has moved on.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apply | No | Set true to EXECUTE this write. Omit (or false) to get a plan of the request that would be sent. Executing also requires the server to run with JIRA_WRITE_MODE=apply. | |
| endDate | Yes | When the sprint is due to end. Required by Jira. ISO-8601 with a UTC offset, e.g. 2026-01-31T09:00:00.000+02:00; sent verbatim. | |
| plan_id | No | The single-use id returned by the preceding plan-mode call. Required together with apply: true; a mismatch means the arguments changed since the plan, and the write is refused rather than executed. | |
| profile | No | Named credential profile for this call. Omit to use the active profile. Rejected when the server locks the profile (JIRA_LOCK_PROFILE). | |
| sprintId | Yes | Sprint id from jira_list_sprints. It must still be in the "future" state. | |
| startDate | Yes | When the sprint starts. Required by Jira. ISO-8601 with a UTC offset, e.g. 2026-01-31T09:00:00.000+02:00; sent verbatim. |