Create Sprint
Create a new Sprint in your project.
Endpoint
POST /projects/{project_uuid}/sprints
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| name | string | The name of the project | Yes |
| description | string | A detailed description of the sprint | No |
| start_date | string | The start date of the sprint (YYYY-MM-DD) | Yes |
| end_date | string | The end date of the sprint (YYYY-MM-DD) | Yes |
Response
A successful response will return a 200 OK status code and a JSON object containing the details of the newly created sprint.
{
"uuid": "a16f1989-2378-467b-a1b6-8146fca3d17a",
"name": "Backlog",
"description": "The backlog of tasks for this project",
"description_plain": "The backlog of tasks for this project",
"start_date": "2024-10-31",
"end_date": "2024-10-31",
"iterative_sprint_id": "0",
"is_active": false,
"is_completed": false,
"is_backlog": true,
"story_points_committed_on_completion": 0,
"story_points_completed_on_completion": 0,
"created_at": "2024-10-31 00:12:08",
"updated_at": "2025-01-17 01:03:38"
}