Azure DevOps Rest API-无法创建新的迭代

时间:2019-05-22 00:55:28

标签: rest azure-devops azure-devops-rest-api

按照以下说明尝试使用REST API通过POST为项目创建迭代:

https://docs.microsoft.com/en-us/rest/api/azure/devops/work/iterations/post%20team%20iteration?view=azure-devops-rest-5.1

但是我仍然收到400条回复。

奇怪的是,我在UI中添加了一个(迭代3)-当我请求结果时,它不包括新的。

是否存在无法正常工作的问题,或者我做错了什么?

https://dev.azure.com/{organization}/{projectId}/{teamId}/_apis/work/teamsettings/iterations?api-version=5.0

enter image description here

{
count: 3,
value: [
{
id: "f95df712-1f2d-4685-86ea-b2e7dbad8353",
name: "Iteration 0",
path: "CMMI2\Iteration 0",
attributes: {
startDate: null,
finishDate: null,
timeFrame: "current"
},
url: "https://dev.azure.com/{organization}/{projectId}/{teamId}/_apis/work/teamsettings/iterations/f95df712-1f2d-4685-86ea-b2e7dbad8353"
},
{
id: "ec4f29f0-0b48-4a52-9b71-45e396654330",
name: "Iteration 1",
path: "CMMI2\Iteration 1",
attributes: {
startDate: null,
finishDate: null,
timeFrame: "future"
},
url: "https://dev.azure.com/{organization}/{projectId}/{teamId}/_apis/work/teamsettings/iterations/ec4f29f0-0b48-4a52-9b71-45e396654330"
},
{
id: "ab3d8626-c613-48ff-9378-f3b7ed109d77",
name: "Iteration 2",
path: "CMMI2\Iteration 2",
attributes: {
startDate: null,
finishDate: null,
timeFrame: "future"
},
url: "https://dev.azure.com/{organization}/{projectId}/{teamId}/_apis/work/teamsettings/iterations/ab3d8626-c613-48ff-9378-f3b7ed109d77"
}
]
}

2 个答案:

答案 0 :(得分:0)

您看不到新的迭代,因为仅在Project configuration中添加了迭代,Rest API与“团队设置”相关。

您还需要在Team configuration中添加迭代(单击它时,您会看到“迭代”标签,然后单击“选择迭代”并选择新的迭代)。

如果您需要有关创建迭代的帮助,则必须在此处共享您尝试过的所有代码。

答案 1 :(得分:0)

要创建新的迭代,必须使用另一个URL。您可以在这里找到它们:Classification Nodes - Create Or Update。创建迭代的示例:

  

POST https://dev.azure.com/fabrikam/Fabrikam-Fiber-Git/_apis/wit/classificationnodes/Iterations?api-version=5.0

     

请求正文

     

JSON

     

{
   “ name”:“最终迭代”,
   “属性”:{

     

“ startDate”:“ 2014-10-27T00:00:00Z”,

     

“ finishDate”:“ 2014-10-31T00:00:00Z”

     

}

     

}