I have Google and found a way to add an issue to any existing Sprint (completed, open, or future) via REST APIs.
While the JIRA Agile REST APIs are available in the JIRA REST API browser, I can't seem to find documentation for the same APIs. I have been wanting to know how to remove an issue from a sprint via the REST API and have been so far unable to find a way to achieve that.
Any suggestion or pointer is appreciated. Thank you in advance.
You can remove it by sending a PUT request to /rest/greenhopper/1.0/sprint/rank
with the following (sample) data
{"idOrKeys":["AG-1"],"customFieldId":10014,"sprintId":1,"addToBacklog":false}
The way I found that was by just opening the "Network" tab of my Chrome browser developer console and looking at the XHR request generated when I remove issue from sprint
Note that the JIRA Agile REST API is not public, so this might break across versions.
Hi Boris,
I know this endpoint being the way to 'add' the issue to a sprint.
To remove the issue from a sprint does the sprintId need to be blank?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, I think the request for add and remove is exacly the same except the addToBacklog parameter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Boris,
I figure it out. To remove from a sprint the sprintid needs to be omitted and addToBacklog needs to be set to true.
This worked but does not solve my original problem unfortunately: https://jira.atlassian.com/browse/JRA-38026
I am marking your comment as an asnwer.
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've tried this only on future sprint, so probably the parameters depend on the status of the spint - if it's not started you should provide an id , if started you do not need to provide id and if closed - you already reported the problem
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.