<?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: Delete push dataset via Power BI API programmatically with Python in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2329030#M34308</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hi Sheng (&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/12837" target="_blank" rel="noopener"&gt;@v-shex-msft&lt;/A&gt;&lt;SPAN&gt;), thank you so much for your support. I was trying the link&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/embedded/embed-service-principal" target="_blank" rel="nofollow noopener noreferrer"&gt;Embed Power BI content in an embedded analytics application with service principal and an applicatio...&lt;/A&gt;&amp;nbsp;and I can not&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;Enable the Power BI service admin settings because it seems, my admin rights are limited. So, I assume the issue is because of a limitation of my rights in the Power BI tenant. Thank you anyway and I realy appreciate the effort you have spend.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Feb 2022 18:44:58 GMT</pubDate>
    <dc:creator>RolandBernhardt</dc:creator>
    <dc:date>2022-02-09T18:44:58Z</dc:date>
    <item>
      <title>Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2265129#M33732</link>
      <description>&lt;P&gt;Hi Power BI community, I am trying to delete a push dataset programmatically in Python and will not use username and password but instead want to work with an access token. I do not get it successfully run and would need support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I have done:&lt;/P&gt;&lt;P&gt;1. I have registered Power BI as an application in Azure Active Directory with all rights following this documentation&amp;nbsp;&lt;A href="https://www.sqlshack.com/how-to-access-power-bi-rest-apis-programmatically/" target="_blank" rel="noopener"&gt;How to access Power BI REST APIs programmatically (sqlshack.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2. I wrote a python script which a.) requests an access token for the registered power bi app from AAD with App ID and App secret - that works and was successful. b.) tried to send a delete request to the respective Power BI API&amp;nbsp;URI to delete the content of the push data set.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the error response 401 - unauthorizes&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the python code which I am using&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;"import adal&lt;BR /&gt;import requests&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;authority_url = '&lt;A href="https://login.microsoftonline.com/microsoft.onmicrosoft.com" target="_blank" rel="noopener"&gt;https://login.microsoftonline.com/microsoft.onmicrosoft.com&lt;/A&gt;'&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;context = adal.AuthenticationContext(&lt;BR /&gt;authority_url,&lt;BR /&gt;validate_authority=True,&lt;BR /&gt;api_version=None&lt;BR /&gt;)&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;# request access token for registered Power BI app from Azure Active Deirectory&lt;BR /&gt;token = context.acquire_token_with_client_credentials(&lt;BR /&gt;resource='&lt;A href="https://analysis.windows.net/powerbi/api" target="_blank" rel="noopener"&gt;https://analysis.windows.net/powerbi/api&lt;/A&gt;',&lt;BR /&gt;client_id= &amp;lt;App ID from AAD&amp;gt;,&lt;BR /&gt;client_secret=&amp;lt;client secret from AAD&amp;gt;)&lt;BR /&gt;&lt;BR /&gt;auth_token=token['accessToken']&lt;BR /&gt;header = {'Authorization': 'Bearer ' + auth_token}&lt;BR /&gt;urlpbi = "&lt;A href="https://api.powerbi.com/v1.0/myorg/datasets/" target="_blank" rel="noopener"&gt;https://api.powerbi.com/v1.0/myorg/datasets/&lt;/A&gt;&amp;lt;your dataset-id&amp;gt;/tables/RealTimeData/rows"&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;# use access token to send delete request to push data set via Power BI API&lt;BR /&gt;response = requests.delete(urlpbi, headers=header)&lt;BR /&gt;print(response)"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can clear the push dataset via PowerShell with out any problem but I need to login with username and password first - which is not a solution for a programmatically solution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;Connect-PowerBIServiceAccount&lt;/P&gt;&lt;P&gt;-&amp;nbsp;&amp;nbsp;Invoke-PowerBIRestMethod -Method DELETE -Url "&lt;A href="https://api.powerbi.com/v1.0/myorg/datasets/" target="_blank" rel="noopener"&gt;https://api.powerbi.com/v1.0/myorg/datasets/&lt;/A&gt;&amp;lt;dataset id&amp;gt;/tables/RealTimeData/rows"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking forward to your response and idea for a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&amp;nbsp;&lt;/P&gt;&lt;P&gt;Roland&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 09:13:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2265129#M33732</guid>
      <dc:creator>RolandBernhardt</dc:creator>
      <dc:date>2022-01-04T09:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2270612#M33790</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;HI&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/349307"&gt;@RolandBernhardt&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;You can take a look at the following link about using programming language to get access tokens to work with other rest API operations if it helps: (AFAIK, get access token operation requires the account and password)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://community.powerbi.com/t5/Developer/REST-API-Get-Access-Token/m-p/1895937" target="_blank" rel="noopener"&gt;Solved: REST API Get Access Token - Microsoft Power BI Community&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;BTW, the 'delete dataset' API required the 'Dataset.ReadWrite.All' permission, please check the corresponding account license and permission configuration first.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/datasets/delete-dataset-in-group" target="_blank" rel="noopener"&gt;Datasets - Delete Dataset In Group - REST API (Power BI Power BI REST APIs) | Microsoft Docs&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/" target="_blank" rel="noopener"&gt;Power BI REST APIs for embedded analytics and automation - Power BI REST API | Microsoft Docs&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;You can also take a look at the below link about MSAL(&lt;SPAN&gt;Microsoft Authentication Library&lt;/SPAN&gt;) with python if helps:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://github.com/AzureAD/microsoft-authentication-library-for-python/wiki" target="_blank"&gt;Home · AzureAD/microsoft-authentication-library-for-python Wiki · GitHub&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 01:32:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2270612#M33790</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-07T01:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2275683#M33828</link>
      <description>&lt;P&gt;Hi Sheng (@Anonymous&lt;/a&gt;), thank you for your response. I went through your links above but non really solve the issue.&lt;/P&gt;&lt;P&gt;- Get Token:&amp;nbsp; to get an access token for the registered Power BI App works in my Python code version and it is similar to the description you have posted. The diffence is, that I am using an app secret instead of a username and password&lt;/P&gt;&lt;P&gt;- the registered Power BI App in AAD has Dataset.ReadWrite.All rights delegated&lt;/P&gt;&lt;P&gt;Thank you also for the other links and I had read them before but could not find a solution for deleting a push dataset programmatically.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I was putting all bits and bytes from available posts and docus together to come up with the solution approach above. But, when I call the delete dataset request with the access token for the Power Bi App, I receive a 401 error and do not know why.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 16:01:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2275683#M33828</guid>
      <dc:creator>RolandBernhardt</dc:creator>
      <dc:date>2022-01-10T16:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2283215#M33878</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/349307"&gt;@RolandBernhardt&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;What happens when you test with the current account that you used in python testing with the rest API online sandbox? (rest API document has a 'try it' button to open the online testing sandbox)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 07:37:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2283215#M33878</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-14T07:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2283751#M33883</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Sheng (&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/12837" target="_blank"&gt;@v-shex-msft&lt;/A&gt;&lt;SPAN&gt;),&amp;nbsp;it works with a response code 200 like it works when I am using PowerShell with "&lt;/SPAN&gt;Connect-PowerBIServiceAccount" and "Invoke-PowerBIRestMethod -Method DELETE -Url "&lt;A href="https://api.powerbi.com/v1.0/myorg/datasets/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://api.powerbi.com/v1.0/myorg/datasets/&lt;/A&gt;&amp;lt;dataset id&amp;gt;/tables/RealTimeData/rows". But I need to use my username and password to login. Using username and password in a programmatical way is from a security aspect not the best approach. Working with a App Secret and a requested Token would be the better approach.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea why the approach via requested Token from AAD PowerBI App is not working?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 13:06:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2283751#M33883</guid>
      <dc:creator>RolandBernhardt</dc:creator>
      <dc:date>2022-01-14T13:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2288222#M33922</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/349307"&gt;@RolandBernhardt&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;So you mean these operations work well in master user mode(account/password) but fail in the service principal mode? (client id/secret with the token)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;If that is the case, I think you may need to register a new app with configurations permission that is suitable with service principal mode.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/embedded/embed-service-principal" target="_blank"&gt;Embed Power BI content in an embedded analytics application with service principal and an application secret - Power BI | Microsoft Docs&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;In addition, you can also take a look at the following link about using python with the rest API which gets the same error code if help:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://stackoverflow.com/questions/57305847/api-power-bi-get-token-but-get-request-get-response-401" target="_blank"&gt;python - API Power BI Get token but get request get response 401 - Stack Overflow&lt;/A&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2022 07:11:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2288222#M33922</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-18T07:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2310387#M34143</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Sheng (&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/12837" target="_blank"&gt;@v-shex-msft&lt;/A&gt;&lt;SPAN&gt;), sorry for my late reply, I thought I had send the reply already. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When I use the "Try It" button, I have to login with my username and password and it works like it works when I use PowerShell "Connect-PowerBIServiceAccount" etc. But I do not want to use my username and password in the python code because it is unsecure. Best practive would be to request an access token and to call the API with the delete request which fails. Any idea or maybe it is a bug in the API?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 10:16:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2310387#M34143</guid>
      <dc:creator>RolandBernhardt</dc:creator>
      <dc:date>2022-01-31T10:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2310407#M34144</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Sheng (&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/12837" target="_blank"&gt;@v-shex-msft&lt;/A&gt;&lt;SPAN&gt;),&amp;nbsp;sorry for my late reply, I thought I had send you already my feedback.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When I use the "Try it" button, I have to enter my username and password and it works, as it work when I am using Powersehll - see my initial Post&amp;nbsp;&amp;nbsp;"Connect-PowerBIServiceAccount" etc.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Using username and password in an python skript would be unseruce. Best practice is to use an access token. Receiving an access token for registerred PowerBI App works, but the calling the PBI API with the delete push dataset fails with the access token. MAybe a bug in the API?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 10:22:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2310407#M34144</guid>
      <dc:creator>RolandBernhardt</dc:creator>
      <dc:date>2022-01-31T10:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2310409#M34145</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Sheng (&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/12837" target="_blank" rel="noopener"&gt;@v-shex-msft&lt;/A&gt;&lt;SPAN&gt;),&amp;nbsp;sorry for my late reply, I thought I had send you already my feedback.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When I use the "Try it" button, I have to enter my username and password and it works, as it work when I am using Powersehll - see my initial Post&amp;nbsp;&amp;nbsp;"Connect-PowerBIServiceAccount" etc.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Using username and password in an python skript would be unseruce. Best practice is to use an access token. Receiving an access token for registerred PowerBI App works, but the calling the PBI API with the delete push dataset fails with the access token. MAybe a bug in the API?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 10:23:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2310409#M34145</guid>
      <dc:creator>RolandBernhardt</dc:creator>
      <dc:date>2022-01-31T10:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2317032#M34195</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;HI&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/349307"&gt;@RolandBernhardt&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;As I said, your app is configured with 'master user' mode, and it does not support enabling both two modes at the same time.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;For this scenario, I'd like to suggest you create a new app and configured it with 'service principal' mode, then your codes should work with the new authorization mode app.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Feb 2022 07:05:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2317032#M34195</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-03T07:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Delete push dataset via Power BI API programmatically with Python</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2329030#M34308</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Sheng (&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/12837" target="_blank" rel="noopener"&gt;@v-shex-msft&lt;/A&gt;&lt;SPAN&gt;), thank you so much for your support. I was trying the link&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/power-bi/developer/embedded/embed-service-principal" target="_blank" rel="nofollow noopener noreferrer"&gt;Embed Power BI content in an embedded analytics application with service principal and an applicatio...&lt;/A&gt;&amp;nbsp;and I can not&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;Enable the Power BI service admin settings because it seems, my admin rights are limited. So, I assume the issue is because of a limitation of my rights in the Power BI tenant. Thank you anyway and I realy appreciate the effort you have spend.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 18:44:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Delete-push-dataset-via-Power-BI-API-programmatically-with/m-p/2329030#M34308</guid>
      <dc:creator>RolandBernhardt</dc:creator>
      <dc:date>2022-02-09T18:44:58Z</dc:date>
    </item>
  </channel>
</rss>

