How to get JIRA Agile issues assigned to the current sprint for the current user using the JIRA REST API?

淺唱寂寞╮ 提交于 2019-12-04 04:16:58

The method you are looking for is

openSprints()

Its only working with JIRA Agile Version 6.5 or higher.

//* EDIT: Greenhopper got renamed to JIRA Agile *//

The method definition is:

Search for issues that are assigned to a Sprint which has not yet been completed. (Note that it is possible for an issue to belong to both a completed Sprint(s) and an incomplete Sprint(s).)

So this should work for you then

assignee in (currentUser()) AND sprint in openSprints()

Regards

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!