任何人都可以帮助我使用oslc或REST调用获取该sprint中的迭代和sprint的列表
答案 0 :(得分:0)
有
我也通过这种方式解决了这个问题。试试吧。
它返回Open Sprints列表。
http://jira.address/rest/greenhopper/1.0/sprint/picker
如果您希望以后搜索已关闭的冲刺,可以在上面的调用中使用以下参数:
http://jira.address/rest/greenhopper/1.0/sprint/picker?excludeCompleted=false
答案 1 :(得分:0)
This thread报告查询迭代可能有点棘手:
为了获得特定开发线的迭代。报告休息I / F可能会有所帮助。
https://clm.example.com:9443/ccm/rpt/repository/foundation?fields=foundation/iteration[developmentLine/name=' RTC V4.0.6开发'] /(id | name | developmentLine / name)
这产生了一些东西:
<iteration> <developmentline> <name> <iteration>
<developmentline><name>RTC V4.0.6 Development</name></developmentline>
<id>Sprint 2</id>
<name>Sprint 2</name>
</iteration> </name> </developmentline> </iteration>
不幸的是,迭代属于开发行,所以我们必须使用like:
来查询developmentLine
有关可报告的RestAPI的简要介绍,refer to this web pages。
https://jazz.net/wiki/bin/view/Main/ReportsRESTAPI
此报告API的一个很好的功能是我们可以按名称查询,而不是对象的uuid。