<?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: Power BI Deployment Automation through RestAPI in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4838168#M63270</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362550"&gt;@ShrutiTrivedi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to follow up and confirm whether you’ve had the opportunity to review the information we&amp;nbsp; provide Should you have any questions or require further clarification, please don't hesitate to reach out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We appreciate your engagement and thank you for being an active part of the community.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Best regards,&lt;BR /&gt;Lakshmi&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Sep 2025 15:38:29 GMT</pubDate>
    <dc:creator>v-lgarikapat</dc:creator>
    <dc:date>2025-09-29T15:38:29Z</dc:date>
    <item>
      <title>Power BI Deployment Automation through RestAPI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4835333#M63216</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;We are trying to automate PowerBI Deployment through Pipeline.&lt;/P&gt;&lt;P&gt;Currently we have achieved a partial automation using rest API (scripting language - Python). In this partial automation we are able to deploy the existing objects but not the new ones.&lt;/P&gt;&lt;P&gt;We are having issues while deploying a new report/semantic model for the following subtasks:&lt;/P&gt;&lt;P&gt;1. Updating gateway connection in datasource -&amp;nbsp;&lt;/P&gt;&lt;P&gt;we have multiple gateways(one for each enviornment) and currently one has to manually select among them. to automate this task, we are not able to find the appropriate Rest api.&lt;/P&gt;&lt;P&gt;2. Adding a new report to the App-&lt;/P&gt;&lt;P&gt;We are unable to find the appropriate RestAPI for the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly assist to resolve these two issues. Also let us know if there is any known limitation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Shruti Trivedi&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 11:46:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4835333#M63216</guid>
      <dc:creator>ShrutiTrivedi</dc:creator>
      <dc:date>2025-09-25T11:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Deployment Automation through RestAPI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4836051#M63219</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362550"&gt;@ShrutiTrivedi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To automate switching gateways for a dataset, you’ll need to use a combination of these REST API endpoints:&lt;/P&gt;
&lt;P&gt;Update Datasource&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Endpoint: PATCH &lt;A href="https://api.powerbi.com/v1.0/myorg/gateways/%7bgatewayId%7d/datasources/%7bdatasourceId%7d" target="_blank"&gt;https://api.powerbi.com/v1.0/myorg/gateways/{gatewayId}/datasources/{datasourceId}&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Purpose: Updates credentials for a datasource on a specific gateway.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;Update Datasources in Group&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Endpoint: PATCH &lt;A href="https://api.powerbi.com/v1.0/myorg/groups/%7bgroupId%7d/datasets/%7bdatasetId%7d/Default.UpdateDatasources" target="_blank"&gt;https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}/Default.UpdateDatasources&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Purpose: Allows you to change the server/database name in the dataset to match the target environment.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;Bind to Gateway&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Endpoint: POST &lt;A href="https://api.powerbi.com/v1.0/myorg/groups/%7bgroupId%7d/datasets/%7bdatasetId%7d/bindToGateway" target="_blank"&gt;https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}/bindToGateway&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;Workaround&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Use Power BI Cmdlets (Add-PowerBIReport, Update-PowerBIApp) for App-level automation.&lt;/LI&gt;
&lt;LI&gt;Parameterize your PBIX files to make gateway switching easier.&lt;/LI&gt;
&lt;LI&gt;Use service principals for secure automation across environments.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/cicd/deployment-pipelines/pipeline-automation" target="_blank"&gt;Automate deployment pipelines with APIs for Power BI items - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;SPAN&gt;If you still have any questions or need further assistance, please don’t hesitate to reach out. We’re more than happy to continue supporting you.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;We appreciate your engagement and thank you for being an active part of the community.&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;Best Regards,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Lakshmi.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 07:08:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4836051#M63219</guid>
      <dc:creator>v-lgarikapat</dc:creator>
      <dc:date>2025-09-26T07:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Deployment Automation through RestAPI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4838168#M63270</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362550"&gt;@ShrutiTrivedi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to follow up and confirm whether you’ve had the opportunity to review the information we&amp;nbsp; provide Should you have any questions or require further clarification, please don't hesitate to reach out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We appreciate your engagement and thank you for being an active part of the community.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Best regards,&lt;BR /&gt;Lakshmi&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 15:38:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4838168#M63270</guid>
      <dc:creator>v-lgarikapat</dc:creator>
      <dc:date>2025-09-29T15:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Deployment Automation through RestAPI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4841792#M63340</link>
      <description>&lt;P&gt;&lt;FONT&gt;&lt;SPAN&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362550"&gt;@ShrutiTrivedi&lt;/a&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;SPAN&gt;We’d like to confirm whether your issue has been successfully resolved. If you still have any questions or need further assistance, please don’t hesitate to reach out. We’re more than happy to continue supporting you.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;We appreciate your engagement and thank you for being an active part of the community.&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;Best Regards,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Lakshmi.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 15:25:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4841792#M63340</guid>
      <dc:creator>v-lgarikapat</dc:creator>
      <dc:date>2025-10-03T15:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Deployment Automation through RestAPI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4844759#M63373</link>
      <description>&lt;P&gt;&lt;FONT&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362550" target="_blank"&gt;@ShrutiTrivedi&lt;/A&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;SPAN&gt;We’d like to confirm whether your issue has been successfully resolved. If you still have any questions or need further assistance, please don’t hesitate to reach out. We’re more than happy to continue supporting you.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;We appreciate your engagement and thank you for being an active part of the community.&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;Best Regards,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Lakshmi.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 16:31:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Deployment-Automation-through-RestAPI/m-p/4844759#M63373</guid>
      <dc:creator>v-lgarikapat</dc:creator>
      <dc:date>2025-10-07T16:31:33Z</dc:date>
    </item>
  </channel>
</rss>

