我正在寻找一种使用RESTful API从JIRA获取sprint信息的方法。 我在JIRA文档中找不到相关信息。有谁知道怎么做?
答案 0 :(得分:2)
jira-python的文档在这里http://jira-python.readthedocs.org/en/latest/ 如果使用其他语言,它应该类似于:
# Get the sprints in a specific board
board_id = 441
print("GreenHopper board: %s (%s)" % (boards[0].name, board_id))
sprints = gh.sprints(board_id)
答案 1 :(得分:0)
嗯,它应该在JIRA Agile文档中,因为JIRA Agile会引入冲刺。但事实并非如此。目前最好的信息来源是查看jira-python库的来源。在那里使用各种REST方法来访问JIRA Agile。