Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I have tried export user workspace details by using Powershell script and also tried manually export the list from admin portal power bi. Both excel list does not contain the users email addresss. How do I extract their email address ? Is there any other way ? I have to look up which email address belongs to which person.
Solved! Go to Solution.
Hi @pravind96
All you have to use a different powershell to invoke the PBI REST API directly
$workspacename =""
$workspace =Get-PowerBIWorkspace -Name $workspacename
# GetDataSets
$UserResponse=Invoke-PowerBIRestMethod -Url "groups/$($workspace.id)/users" -Method GetThis will give you the Email of the users
Sample Response
{
"@odata.context":"http://wabi-europe-north-b-redirect.analysis.windows.net/v1.0/myorg/groups/xxxxxxxx/$metadata#users","value":[
{
"emailAddress":"Jayendran@abc.com","groupUserAccessRight":"Admin","displayName":"Jayendran Arumugam","identifier":"Jayendran@abc.com","principalType":"User"
}
]
}
Hi @pravind96
All you have to use a different powershell to invoke the PBI REST API directly
$workspacename =""
$workspace =Get-PowerBIWorkspace -Name $workspacename
# GetDataSets
$UserResponse=Invoke-PowerBIRestMethod -Url "groups/$($workspace.id)/users" -Method GetThis will give you the Email of the users
Sample Response
{
"@odata.context":"http://wabi-europe-north-b-redirect.analysis.windows.net/v1.0/myorg/groups/xxxxxxxx/$metadata#users","value":[
{
"emailAddress":"Jayendran@abc.com","groupUserAccessRight":"Admin","displayName":"Jayendran Arumugam","identifier":"Jayendran@abc.com","principalType":"User"
}
]
}
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.