如何编写显示团队讨论计数的VSTS查询?

时间:2017-11-11 13:04:27

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

我们要编写一个查询,显示VSTS任务中用户每日评论的计数。我们怎么做?

我们应该使用哪种API?

1 个答案:

答案 0 :(得分:1)

There is the Work Item Comments REST API that can query the comments, for example: https://[account].visualstudio.com/DefaultCollection/_apis/wit/workitems/[work item id]/comments?api-version=3.0-preview.

So, you can build a app to do report with this REST API, you also can custom extension to show data with this REST API: Write your first extension for VSTS