请分享示例REST API查询以获取给定项目中所有sprint的列表。
提前致谢。
答案 0 :(得分:2)
要回答这个问题,您需要知道UI术语到基础asset types的映射。您在UI中看到的sprint被称为Timebox
,您所看到的项目被称为Scope
。您还需要知道Timebox
与Scope
没有直接关系。它们通过API中Schedule
简称为sprint schedule来实现多对多。
您可以使用query.v1 endpoint发布以下查询:
from: Timebox
where:
Schedule.ScheduledScopes.Name: The Desired Project
或者,使用rest-1.v1/Data endpoint,您可以获得以下查询:
<Server Base URI>/rest-1.v1/Data/Timebox?where=Schedule.ScheduledScopes.Name='The Desired Project'