How do I edit a Sprint End date of a completed sprint in the UI, not via the database?

Ragan Sossaman October 26, 2018

We had a sprint that closed but the user forgot to actually complete the sprint until the next day.  It appears the end date gets automatically set when you complete the sprint and there is no option to change the end date of a completed sprint.  We need to set the end date back by one day as that is when the sprint ended.  Can this be done in the UI somewhere?

1 answer

1 vote
Petter Gonçalves
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
October 26, 2018

Hello Ragan,

For the Cloud platform, you're correct to say that we don't have a way to update the completion date since we don't have database access in Cloud.

In fact, the completionDate of the sprints are not editable even using REST API (Refer to this link).

That's why we created the following feature request:

Add ability to change sprint completion date (agile board)

Please, feel free to vote and watch this suggestion to be aware of any new updates.

Filip Pokorny January 6, 2021

I double-checked if completionDate still cannot be set by rest api, while editing active sprint

... aaand no, still not possible. Sprint has closes, but the completeDate is overwritten

curl --request PUT --url 'https://jira.disney.com/rest/agile/latest/sprint/8601' --header 'Accept: application/json' --header 'Content-Type: application/json' --data '{"id":8601,"self":"https://jira.disney.com/rest/agile/1.0/sprint/8601","state":"closed","name":"Test Sprint 1","startDate":"2020-12-17T12:00:28.267Z","endDate":"2020-12-31T12:00:00.000Z","completeDate":"2020-12-31T12:00:00.000Z","originBoardId":3623,"goal":""}'

% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 538 0 269 100 269 176 176 0:00:01 0:00:01 --:--:-- 354

{"id":8601,"self":"https://jira.disney.com/rest/agile/1.0/sprint/8601","state":"closed","name":"Test Sprint 1","startDate":"2020-12-17T12:00:28.267Z","endDate":"2020-12-31T12:00:00.000Z","completeDate":"2021-01-06T13:29:36.410Z","originBoardId":3623,"goal":""}

Filip Pokorny January 6, 2021

I wanted to double-check if that is still the case in 2021 and sadly it is. I tried to close an active sprint through rest api and set the completionDate at the same time and it gets overwritten

 

curl --request PUT --url 'https://jira.disney.com/rest/agile/latest/sprint/8601' --header 'Accept: application/json' --header 'Content-Type: application/json' --data '{"id":8601,"self":"https://jira.disney.com/rest/agile/1.0/sprint/8601","state":"closed","name":"Test Sprint 1","startDate":"2020-12-17T12:00:28.267Z","endDate":"2020-12-31T12:00:00.000Z","completeDate":"2020-12-31T12:00:00.000Z","originBoardId":3623,"goal":""}'


% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 538 0 269 100 269 176 176 0:00:01 0:00:01 --:--:-- 354

{"id":8601,"self":"https://jira.disney.com/rest/agile/1.0/sprint/8601","state":"closed","name":"Test Sprint 1","startDate":"2020-12-17T12:00:28.267Z","endDate":"2020-12-31T12:00:00.000Z","completeDate":"2021-01-06T13:29:36.410Z","originBoardId":3623,"goal":""}

Suggest an answer

Log in or Sign up to answer