使用Rally REST API,如何查询和返回一个*complete*JSON对象

本文关键字:返回 一个 对象 JSON complete 查询 API REST Rally 何查询 使用 | 更新日期: 2023-09-27 18:20:18

我正在使用.NET API。所谓完整,我指的是像这样的JSON(已经格式化,我认为需要凭据才能在Web服务中看到它)。

当我实例化Request对象时,这只是添加更多字段以获取的问题吗?

Request storyRequest = new Request("hierarchicalrequirement")
        {
            /* Fields to Fetch*/
            Fetch = new List<string>() { "Name", "FormattedID", "Children", "Owner", "ScheduleState" }, 
            // keep adding field here...
            /* Add a query - quering the US with ID equals to '_formattedID'*/
            Query = new Query("FormattedID", Query.Operator.Equals, _formattedID)
        };

提前感谢!

编辑我想通过用户故事ID进行查询,以防不清楚。

使用Rally REST API,如何查询和返回一个*complete*JSON对象

构建请求时,应在fetch属性中筛选要获取的字段。

关键:

_rallyAPIMajor
_rallyAPIMinor
_ref
_objectVersion
_refObjectName

随时可要求退货。您可以将Fetch保留为空,并返回所有45个键(45表示"层次要求"),也可以过滤您需要的键。

相关文章: