通过 url 添加 TFS 任务(工作项)

Adding TFS tasks (work item) via url

目前我正在尝试使用 TFS 2015。我认为应该可以通过浏览器添加任务(工作项)url。如果它像我预期的那样工作,这对我来说是完美的:)

我目前的 url(删除了个人物品)

https://{myurl}/tfs/DefaultCollection/{project}/_workItems#_a=new&witd=Task&[Title]=Do this&[Original Estimate]=1&[Remaining Work]=1&[??????PARENT?????]={??id??}&[System.AreaPath]={project}&[System.IterationPath]={project+iteration}

到目前为止一切顺利,可以通过 url 添加项目,但我不知道如何将 父项 link 添加到工作项! 我试过 [Node Name]、[Parent]、[System.NodeName],但其中 none 有效。

有人知道如何创建 link 吗?还是不可能?

提前tnx

尝试使用[System.Linktypes][System.LinkTypes.Hierarchy-Reverse]

此外,建议您使用 REST API,就像 debugthings 提到的那样。 Work Items|Rest API If you haven't already, look at the information on getting started 这些 APIs。