Thangaraja
Thangaraja

Reputation: 956

Dashboard using Azure DevOps Services REST API

We are working on building report/dashboard which helps to find the number of code commits, number of pull requests per day, within a particular range etc. We are using https://learn.microsoft.com/en-us/rest/api/azure/devops/?view=azure-devops-rest-5.1

Upvotes: 2

Views: 457

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222522

Yes there is a rest API available,

  • You can use Pull Requests - Get Pull Requests and filter out the results by Date
  • Number of lines added per commit can be obtained using by Get Commmits

Upvotes: 1

Related Questions