Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Charline_74
Resolver I
Resolver I

API Power BI to change the name of a workspace

Hello, 

 

Is there a Powershell API to change the name of an existing workspace in Power BI Service ?

 

Thanks in Advance, 

 

Charline 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Charline_74 ,

Please refer the following link to update the workspace name by using Powershell:

Renaming an existing workspace

# Set workspace properties
$workspace1.Name = "Dilbert Takes Over"
$workspace1.Description = "He is always causing trouble"
$workspace1.CapacityId = "00000000-0000-0000-0000-000000000000"
Set-PowerBIWorkspace -Scope Organization -Workspace $workspace1
 
# Grab pointer to object
$workspace1 = Get-PowerBIWorkspace -Scope Organization -Filter "name eq 'Dilbert Takes Over'"
$workspace1

yingyinr_1-1669701346585.png

Best Regards

View solution in original post

3 REPLIES 3
Charline_74
Resolver I
Resolver I

Hi @lbendlin

Thank you for your help 🙂 

Do you know how to use it?

I tried this script but it doesn't work

$body = @{
    updateDetails = @(
           @{
                name = "WKS Developpment Delivery"
            }
        )
    }

Invoke-PowerBIRestMethod -Url "https://api.powerbi.com/v1.0/myorg/admin/groups/cf9b95c8-2ba2-4089-9ba1-1c3611c9071d" -Method Patch -Body $body
Anonymous
Not applicable

Hi @Charline_74 ,

Please refer the following link to update the workspace name by using Powershell:

Renaming an existing workspace

# Set workspace properties
$workspace1.Name = "Dilbert Takes Over"
$workspace1.Description = "He is always causing trouble"
$workspace1.CapacityId = "00000000-0000-0000-0000-000000000000"
Set-PowerBIWorkspace -Scope Organization -Workspace $workspace1
 
# Grab pointer to object
$workspace1 = Get-PowerBIWorkspace -Scope Organization -Filter "name eq 'Dilbert Takes Over'"
$workspace1

yingyinr_1-1669701346585.png

Best Regards

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors