<?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 Re: Can I add description and logo while creating a powerbi workspace via API in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4088633#M54661</link>
    <description>&lt;P&gt;Hi again,&lt;BR /&gt;&lt;BR /&gt;Yes you are right. I just tried to create a workspace with description in body, but that did not work. Sorry for not checking this before posting an answer.&lt;BR /&gt;&lt;BR /&gt;If you are able to use Powershell, there is a cmdlet you can use to add description after the workspace is created:&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/powershell/module/microsoftpowerbimgmt.workspaces/set-powerbiworkspace?view=powerbi-ps" target="_blank"&gt;https://learn.microsoft.com/en-us/powershell/module/microsoftpowerbimgmt.workspaces/set-powerbiworkspace?view=powerbi-ps&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Set-PowerBIWorkspace -Id "&amp;lt;workspaceid&amp;gt;" -Description "Test Description"&lt;/P&gt;</description>
    <pubDate>Thu, 08 Aug 2024 07:40:30 GMT</pubDate>
    <dc:creator>mariussve1</dc:creator>
    <dc:date>2024-08-08T07:40:30Z</dc:date>
    <item>
      <title>Can I add description and logo while creating a powerbi workspace via API</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4085089#M54614</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Am trying to create a powerbi workspace using API as per the MSFT documentation : &lt;A href="https://learn.microsoft.com/en-us/rest/api/power-bi/groups/create-group" target="_self"&gt;Create Workspace&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However through this am only able to create a workspace and assign a name to this workspace.&lt;BR /&gt;My question is - can we also add a description and logo via API ?If yes, how do I do that ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help on this is highly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance !&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2024 20:34:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4085089#M54614</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-06T20:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can I add description and logo while creating a powerbi workspace via API</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4085147#M54617</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Description should work with this body:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;"name": "Workspace Name",&lt;BR /&gt;"description": "This is a description of the workspace"&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dont think its possible to set logo... should be possible with base64 string, but have not seen Any support of this with api&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2024 21:00:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4085147#M54617</guid>
      <dc:creator>mariussve1</dc:creator>
      <dc:date>2024-08-06T21:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can I add description and logo while creating a powerbi workspace via API</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4088611#M54659</link>
      <description>&lt;P&gt;Thanks for the reply from &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/350187"&gt;@mariussve1&lt;/a&gt;&amp;nbsp;, please allow me to provide another insight:&amp;nbsp; &lt;BR /&gt;Hi&amp;nbsp; @Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to the official API documentation, the request body of this API supports only one parameter, which is group name&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/rest/api/power-bi/groups/create-group" target="_blank"&gt;Groups - Create Group - REST API (Power BI Power BI REST APIs) | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyangliumsft_0-1723102284495.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1147083i629217DC0A55A5DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyangliumsft_0-1723102284495.png" alt="vyangliumsft_0-1723102284495.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;In addition, regarding update group, it also only supports two parameters to be placed in the request body of the API, one is group name and the other is defaultDatasetStorageFormat, so please refer to other UI automation ways rather than API ways to realize the automatic filling of descriptions and logos, instead of the not API&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/rest/api/power-bi/groups/update-group" target="_blank"&gt;Groups - Update Group - REST API (Power BI Power BI REST APIs) | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For tools that make it possible to automate the UI, please refer to the PowerAutomate dekstop, which has the ability to click on a web page and extract it automatically.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-automate/desktop-flows/how-to/send-physical-clicks-web-element" target="_blank"&gt;Send physical clicks on a web element - Power Automate | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-automate/desktop-flows/introduction" target="_blank"&gt;Introduction to desktop flows - Power Automate | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 07:31:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4088611#M54659</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-08T07:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can I add description and logo while creating a powerbi workspace via API</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4088633#M54661</link>
      <description>&lt;P&gt;Hi again,&lt;BR /&gt;&lt;BR /&gt;Yes you are right. I just tried to create a workspace with description in body, but that did not work. Sorry for not checking this before posting an answer.&lt;BR /&gt;&lt;BR /&gt;If you are able to use Powershell, there is a cmdlet you can use to add description after the workspace is created:&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/powershell/module/microsoftpowerbimgmt.workspaces/set-powerbiworkspace?view=powerbi-ps" target="_blank"&gt;https://learn.microsoft.com/en-us/powershell/module/microsoftpowerbimgmt.workspaces/set-powerbiworkspace?view=powerbi-ps&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Set-PowerBIWorkspace -Id "&amp;lt;workspaceid&amp;gt;" -Description "Test Description"&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 07:40:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4088633#M54661</guid>
      <dc:creator>mariussve1</dc:creator>
      <dc:date>2024-08-08T07:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can I add description and logo while creating a powerbi workspace via API</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4092156#M54681</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/350187"&gt;@mariussve1&lt;/a&gt;&amp;nbsp;I tried writing the description inside the body but still it doesnt work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2024 15:40:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Can-I-add-description-and-logo-while-creating-a-powerbi/m-p/4092156#M54681</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-09T15:40:44Z</dc:date>
    </item>
  </channel>
</rss>

