This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
HI ALL,
i need a compelete data of following
1-All workspaces names
2-all reportorts related to workspaces
3-owner of samentic models
4-Who acces those reports in last one year
Regards
Solved! Go to Solution.
Hello @faheem_Latif_BI
here I am sharing powershell and rest api both for each of your usecase
you will need admin access to run some of these
List of All Workspaces
Connect-PowerBIServiceAccount
$Workspaces = Get-PowerBIWorkspace -Scope Organization -All
$Workspaces | Select Name
GET https://api.powerbi.com/v1.0/myorg/admin/groups
All Reports Related to Workspaces
foreach ($Workspace in $Workspaces) {
$Reports = Get-PowerBIReport -WorkspaceId $Workspace.Id
$Reports | Select Name, WorkspaceId
}
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/reports
Owner of Semantic Models
foreach ($Workspace in $Workspaces) {
$Datasets = Get-PowerBIDataset -WorkspaceId $Workspace.Id
$Datasets | Select Name, Owner
}
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets
Users Who Accessed Reports in the Last Year
Get-PowerBIActivityEvent -StartDateTime "2024-02-06T00:00:00" -EndDateTime "2025-02-06T23:59:59"
Filter the logs for report access events.
Please accept the answer if this is helpful
Hello @faheem_Latif_BI
here I am sharing powershell and rest api both for each of your usecase
you will need admin access to run some of these
List of All Workspaces
Connect-PowerBIServiceAccount
$Workspaces = Get-PowerBIWorkspace -Scope Organization -All
$Workspaces | Select Name
GET https://api.powerbi.com/v1.0/myorg/admin/groups
All Reports Related to Workspaces
foreach ($Workspace in $Workspaces) {
$Reports = Get-PowerBIReport -WorkspaceId $Workspace.Id
$Reports | Select Name, WorkspaceId
}
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/reports
Owner of Semantic Models
foreach ($Workspace in $Workspaces) {
$Datasets = Get-PowerBIDataset -WorkspaceId $Workspace.Id
$Datasets | Select Name, Owner
}
GET https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets
Users Who Accessed Reports in the Last Year
Get-PowerBIActivityEvent -StartDateTime "2024-02-06T00:00:00" -EndDateTime "2025-02-06T23:59:59"
Filter the logs for report access events.
Please accept the answer if this is helpful
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 8 | |
| 8 | |
| 8 |
| User | Count |
|---|---|
| 49 | |
| 27 | |
| 25 | |
| 20 | |
| 20 |