Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Is there a way to tell, what workspaces and reports that a user has access to?
Don
Solved! Go to Solution.
Hey @dfox09 ,
you can get this information with the Power BI REST API.
The following method should give you the result you want:
Admin - Groups GetGroupsAsAdmin - REST API (Power BI Power BI REST APIs) | Microsoft Docs
Also check the following article:
Hi @dfox09 ,
You can also check this link:
Returns a list of workspaces the user has access to.
https://docs.microsoft.com/en-us/rest/api/power-bi/groups/getgroups
As long as you get the workspace that can be accessed, it means that your minimum authority is View, and you can access all the reports inside.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @dfox09 ,
You can also check this link:
Returns a list of workspaces the user has access to.
https://docs.microsoft.com/en-us/rest/api/power-bi/groups/getgroups
As long as you get the workspace that can be accessed, it means that your minimum authority is View, and you can access all the reports inside.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you Liu!
Hey @dfox09 ,
you can get this information with the Power BI REST API.
The following method should give you the result you want:
Admin - Groups GetGroupsAsAdmin - REST API (Power BI Power BI REST APIs) | Microsoft Docs
Also check the following article:
Thank you Denis!