<?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: extract page and dashlet name with Get-PowerBIActivityEvent from ExportReport in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/extract-page-and-dashlet-name-with-Get-PowerBIActivityEvent-from/m-p/2769212#M38663</link>
    <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Base on my research, it does not return the properties about the report page information after&lt;SPAN&gt;&amp;nbsp;executing the command Get-PowerBIActivityEvent xxx.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_1-1663223829978.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/784110i887209A764E19F2B/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_1-1663223829978.png" alt="yingyinr_1-1663223829978.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can call the REST API &lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/reports/get-pages" target="_self"&gt;&lt;STRONG&gt;Reports - Get Pages&lt;/STRONG&gt;&lt;/A&gt; to get the page infomation of the corresponding report by the special report name.&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;GET https://api.powerbi.com/v1.0/myorg/reports/5b218778-e7a5-4d73-8187-f10824047715&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_0-1663222391526.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/784086i3BF769F1885EDEF5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yingyinr_0-1663222391526.png" alt="yingyinr_0-1663222391526.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Thu, 15 Sep 2022 06:37:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-09-15T06:37:36Z</dc:date>
    <item>
      <title>extract page and dashlet name with Get-PowerBIActivityEvent from ExportReport</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/extract-page-and-dashlet-name-with-Get-PowerBIActivityEvent-from/m-p/2766963#M38648</link>
      <description>&lt;P&gt;Hi, we are using the below PowerShell query to extract who exported the report from the Power BI reports. . It gives more of workspace name, report name, who exported, and a few other properties.&amp;nbsp;Our need is to understand which page/tab and dashlet/grid they exported but from the output details, we can not find them.&amp;nbsp;Any suggestions?&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;&lt;LI-CODE lang="markup"&gt;[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12

$activities = Get-PowerBIActivityEvent -StartDateTime '2022-07-01T00:00:00' -EndDateTime '2022-07-01T23:59:59' -ActivityType 'ExportReport' | ConvertFrom-Json

$activities[0]&lt;/LI-CODE&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2022 10:39:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/extract-page-and-dashlet-name-with-Get-PowerBIActivityEvent-from/m-p/2766963#M38648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-14T10:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: extract page and dashlet name with Get-PowerBIActivityEvent from ExportReport</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/extract-page-and-dashlet-name-with-Get-PowerBIActivityEvent-from/m-p/2769212#M38663</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Base on my research, it does not return the properties about the report page information after&lt;SPAN&gt;&amp;nbsp;executing the command Get-PowerBIActivityEvent xxx.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_1-1663223829978.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/784110i887209A764E19F2B/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_1-1663223829978.png" alt="yingyinr_1-1663223829978.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can call the REST API &lt;A href="https://docs.microsoft.com/en-us/rest/api/power-bi/reports/get-pages" target="_self"&gt;&lt;STRONG&gt;Reports - Get Pages&lt;/STRONG&gt;&lt;/A&gt; to get the page infomation of the corresponding report by the special report name.&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;GET https://api.powerbi.com/v1.0/myorg/reports/5b218778-e7a5-4d73-8187-f10824047715&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_0-1663222391526.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/784086i3BF769F1885EDEF5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yingyinr_0-1663222391526.png" alt="yingyinr_0-1663222391526.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2022 06:37:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/extract-page-and-dashlet-name-with-Get-PowerBIActivityEvent-from/m-p/2769212#M38663</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-15T06:37:36Z</dc:date>
    </item>
  </channel>
</rss>

