<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic API Power BI to change the name of a workspace in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/API-Power-BI-to-change-the-name-of-a-workspace/m-p/2929863#M39971</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a Powershell API to change the name of an existing workspace in Power BI Service ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Charline&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 25 Nov 2022 15:15:14 GMT</pubDate>
    <dc:creator>Charline_74</dc:creator>
    <dc:date>2022-11-25T15:15:14Z</dc:date>
    <item>
      <title>API Power BI to change the name of a workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/API-Power-BI-to-change-the-name-of-a-workspace/m-p/2929863#M39971</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a Powershell API to change the name of an existing workspace in Power BI Service ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Charline&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Nov 2022 15:15:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/API-Power-BI-to-change-the-name-of-a-workspace/m-p/2929863#M39971</guid>
      <dc:creator>Charline_74</dc:creator>
      <dc:date>2022-11-25T15:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: API Power BI to change the name of a workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/API-Power-BI-to-change-the-name-of-a-workspace/m-p/2930868#M39977</link>
      <description>&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/rest/api/power-bi/admin/groups-update-group-as-admin" target="_blank"&gt;Admin - Groups UpdateGroupAsAdmin - REST API (Power BI Power BI REST APIs) | Microsoft Learn&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Nov 2022 22:19:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/API-Power-BI-to-change-the-name-of-a-workspace/m-p/2930868#M39977</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2022-11-26T22:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: API Power BI to change the name of a workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/API-Power-BI-to-change-the-name-of-a-workspace/m-p/2932358#M39995</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know how to use it?&lt;/P&gt;&lt;P&gt;I tried this script but it doesn't work&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$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&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 28 Nov 2022 08:58:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/API-Power-BI-to-change-the-name-of-a-workspace/m-p/2932358#M39995</guid>
      <dc:creator>Charline_74</dc:creator>
      <dc:date>2022-11-28T08:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: API Power BI to change the name of a workspace</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/API-Power-BI-to-change-the-name-of-a-workspace/m-p/2934601#M40021</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/475779"&gt;@Charline_74&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please refer the following link to update the workspace name by using Powershell:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.mssqltips.com/sqlservertip/6582/power-bi-workspace-management-with-powershell/" target="_self"&gt;Renaming an existing workspace&lt;/A&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;# 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&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_1-1669701346585.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/831327iE4AEFD2A0B058F37/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_1-1669701346585.png" alt="yingyinr_1-1669701346585.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 05:56:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/API-Power-BI-to-change-the-name-of-a-workspace/m-p/2934601#M40021</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-29T05:56:34Z</dc:date>
    </item>
  </channel>
</rss>

