我正在尝试将 Servicenow 与 Azure Devops Board 集成,以使用 REST API 在工作项上创建/更新等
我成功地在工作项上创建和更新了很多东西
我找不到告诉工作项落在特定泳道中的 API

如果你查看我附上的图片,它有一个默认的泳道(测试)和自定义的......所以 H 有一个 api 将它从“ToDo”移动到“Doing”,但是如果你注意到有多个“Doing” “因为有不同的泳道,所以任何人都可以请帮助技巧是什么或告诉工作项落在特定泳道中的 API
我做了一些研究,发现“System.BoardLane”我确实在后期和补丁中使用过
错误:
{
"$id": "1",
"customProperties": {
"ReferenceName": null
},
"innerException": null,
"message": "TF401326: Invalid field status 'ReadOnly' for field 'System.BoardLane'.",
"typeName": "Microsoft.TeamFoundation.WorkItemTracking.Server.WorkItemFieldInvalidException, Microsoft.TeamFoundation.WorkItemTracking.Server",
"typeKey": "WorkItemFieldInvalidException",
"errorCode": 600171,
"eventId": 3200
}
Run Code Online (Sandbox Code Playgroud)
然后我使用了操作“op”:“move”
错误:
{
"$id": "1",
"innerException": null,
"message": "Move/Copy is not implemented.",
"typeName": "Microsoft.VisualStudio.Services.WebApi.Patch.PatchOperationFailedException, Microsoft.VisualStudio.Services.WebApi",
"typeKey": "PatchOperationFailedException",
"errorCode": 0,
"eventId": 3000
}
Run Code Online (Sandbox Code Playgroud) azure-devops ×1