我们要编写一个查询,显示VSTS任务中用户每日评论的计数。我们怎么做?
我们应该使用哪种API?
答案 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