I am managing an Azure DevOps organization which is having 300+ projects. I want to know how many releases are happing every month across the projects.
I saw we have REST API to get release from one specific project. https://vsrm.dev.azure.com/{organization}/{project}/_apis/release/releases?api-version=6.0
But this will require me to extract all project name using other REST API and pass in the above manually.
Is there any API which can give me release from all projects from a DevOps organization?
If there is any single API which will provide me this details is fine.
If not, any PowerShell, CLI script which will loop through each project, pass to above API and extract a report for me to get all projects releases will be fine.
Any other mechanism suggestion like pipeline etc. will also be appreciated.
Thanks Den