Forum Discussion
Ew0ra
Aug 31, 2023Copper Contributor
Is there an API that list all project level Azure DevOps Groups?
I found the following API, that retrieves TFS Groups: https://tfs2018:8080/tfs/{collection}/{team-project}/_api/_identity/ReadScopedApplicationGroupsJson?__v=5. I was wondering if there is also an AP...
Jacob_Peterson
Sep 05, 2023Copper Contributor
You can get all Groups from this endpoint:
https://vssps.dev.azure.com/{collection}/_apis/graph/groups?api-version=7.1-preview
Then check in the principal name of each group object for the project name like: [My Project]\\My_Project_Prod_Approvers
https://vssps.dev.azure.com/{collection}/_apis/graph/groups?api-version=7.1-preview
Then check in the principal name of each group object for the project name like: [My Project]\\My_Project_Prod_Approvers