<?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: Incremental refresh to Power BI with custom connector from API Rest source in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3079879#M41245</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="447085" data-lia-user-login="jaweher899" class="lia-mention lia-mention-user"&gt;jaweher899&lt;/a&gt;&amp;nbsp; ?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 14 Feb 2023 15:56:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-02-14T15:56:27Z</dc:date>
    <item>
      <title>Incremental refresh to Power BI with custom connector from API Rest source</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3071429#M41140</link>
      <description>&lt;P&gt;Hi, we saw this code sample from the Incremental refresh documentation:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A title="incremental-refresh" href="https://learn.microsoft.com/en-us/power-bi/connect-data/incremental-refresh-overview#supported-data-sources" target="_self" rel="nofollow noopener noreferrer"&gt;https://learn.microsoft.com/en-us/power-bi/connect-data/incremental-refresh-overview#supported-data-...&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;this code used remote&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;(Source API Rest&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;data) source with the&amp;nbsp;RangeStart&amp;nbsp;and&amp;nbsp;RangeEnd&amp;nbsp;, when we try to do that with a custom connector we can’t get access to these Managed parameters.&lt;BR /&gt;is there a way do this Incremental refresh with a custom connector and make?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 09:33:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3071429#M41140</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-09T09:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh to Power BI with custom connector from API Rest source</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3071848#M41143</link>
      <description>&lt;P&gt;it is possible to do incremental refresh with a custom connector in Power BI. The custom connector should support incremental refresh by providing the necessary information such as the range start and end values, so that Power BI can determine which data to retrieve during the refresh operation.&lt;/P&gt;&lt;P&gt;To implement incremental refresh with a custom connector, you would need to add the appropriate logic in your connector code to retrieve the necessary data based on the provided range start and end values.&lt;/P&gt;&lt;P&gt;For example, if your custom connector is using an API to retrieve data, you would need to add parameters to the API call to specify the range of data to retrieve based on the provided range start and end values. The API should return only the data that falls within the specified range, which will then be used for the incremental refresh in Power BI.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 12:56:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3071848#M41143</guid>
      <dc:creator>jaweher899</dc:creator>
      <dc:date>2023-02-09T12:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh to Power BI with custom connector from API Rest source</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3072047#M41146</link>
      <description>&lt;P&gt;Thanks for your answer,&lt;/P&gt;&lt;P&gt;Can you please give an example or link to an example that shows how to add this "&lt;SPAN&gt;appropriate logic in your connector code to retrieve the necessary data based on the provided range start and end values"&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Our connector get no parameters from outside, just a JSON token for the authorization&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;and it has a API call we perform to server that has range time parameters (start and end time)&lt;/P&gt;&lt;P&gt;the question is how to connect between the URL we use in the Wenb.Content(URL) and the powerbi RandeStart / RangeEnd parameters&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;meaning: we are edit the connector code in VisualStudio. if I will write &lt;SPAN&gt;RangeStart and try to use it as a parameter in the URL - the code won't compile and it does not know what is&amp;nbsp;RangeStart (it is undefined param)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 14:23:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3072047#M41146</guid>
      <dc:creator>LiranRom</dc:creator>
      <dc:date>2023-02-09T14:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh to Power BI with custom connector from API Rest source</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3072275#M41152</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="447085" data-lia-user-login="jaweher899" class="lia-mention lia-mention-user"&gt;jaweher899&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;what are the necessary information and how does it work, we don’t have access to managed parameter with the connector, and this is the only thing the documentation says that we need to do&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 15:24:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3072275#M41152</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-09T15:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh to Power BI with custom connector from API Rest source</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3079879#M41245</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="447085" data-lia-user-login="jaweher899" class="lia-mention lia-mention-user"&gt;jaweher899&lt;/a&gt;&amp;nbsp; ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2023 15:56:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh-to-Power-BI-with-custom-connector-from-API/m-p/3079879#M41245</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-14T15:56:27Z</dc:date>
    </item>
  </channel>
</rss>

