0

I made a mistake in naming the sprint in jira board now i got to know about it. so now i want to edit those sprint names to avoid ambiguity in future. Is it possible to change?

That is not the present sprint which is going on. Those sprints are already finished now i want to edit them. How?

I can rename the current sprint by on hover to sprint name but how to change the previous sprint name

1 Answers1

0

The REST resource /sprint/{sprintId} looks like you can pass the existing sprintId parameter plus an updateSprintRequest object which has a name member variable.

Source code is in ./src/main/java/com/atlassian/greenhopper/web/rapid/sprint/CompleteSprintResource.java

mdoar
  • 6,758
  • 1
  • 21
  • 20
  • just am using jira agile board i want to edit the name of the sprint – user2389743 Jun 01 '13 at 12:32
  • what should i do with this,/src/main/java/com/atlassian/greenhopper/web/rapid/sprint/CompleteSprintResource.java – user2389743 Jun 01 '13 at 12:33
  • @mdoar - Looks like this is not possible. "Sprints that are in a closed state cannot be updated." from the API documentation at https://docs.atlassian.com/greenhopper/REST/cloud/#agile/1.0/sprint-updateSprint – chiccodoro Aug 03 '15 at 13:59