<?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 Looking to extract all data from a data source using backend (non-javascript) API in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1811531#M66159</link>
    <description>&lt;P&gt;Cinch is a marketing automated start up and we have a client that uses Qlik Sense as a data warehouse and visualization tool.&amp;nbsp; I would like in an automated schedule (e.g., once a day) to download the data from a data source.&amp;nbsp; I've been given an API key but I don't seem to see any way to extract the data.&lt;/P&gt;</description>
    <pubDate>Fri, 28 May 2021 20:22:08 GMT</pubDate>
    <dc:creator>clondon</dc:creator>
    <dc:date>2021-05-28T20:22:08Z</dc:date>
    <item>
      <title>Looking to extract all data from a data source using backend (non-javascript) API</title>
      <link>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1811531#M66159</link>
      <description>&lt;P&gt;Cinch is a marketing automated start up and we have a client that uses Qlik Sense as a data warehouse and visualization tool.&amp;nbsp; I would like in an automated schedule (e.g., once a day) to download the data from a data source.&amp;nbsp; I've been given an API key but I don't seem to see any way to extract the data.&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 20:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1811531#M66159</guid>
      <dc:creator>clondon</dc:creator>
      <dc:date>2021-05-28T20:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Looking to extract all data from a data source using backend (non-javascript) API</title>
      <link>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1811539#M66163</link>
      <description>&lt;P&gt;Just to clarify a few things.&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. You mentioned API key. Is this customer using Qlik Sense in Qlik Cloud or on-premise at customer?&lt;/P&gt;&lt;P&gt;2. Note that Qlik Sense loads data from data sources -- database tables, excel files, etc -- and stores them in a Qlik Application data model for use by visualizations in this chart.&amp;nbsp; Do you want to:&lt;BR /&gt;a) Extract the data from the Application data model?&lt;BR /&gt;b) Extract/copy the input data sources that Qlik used to build the application data model?&amp;nbsp;&lt;/P&gt;&lt;P&gt;It sounds like "a" but thought I would confirm before going further.&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 21:54:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1811539#M66163</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-05-28T21:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Looking to extract all data from a data source using backend (non-javascript) API</title>
      <link>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1811543#M66165</link>
      <description>&lt;P&gt;Thanks, you are correct. I have an API key for Qlik Sense and I want to try and do "a", Extract the data from the Application data model.&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 22:14:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1811543#M66165</guid>
      <dc:creator>clondon</dc:creator>
      <dc:date>2021-05-28T22:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Looking to extract all data from a data source using backend (non-javascript) API</title>
      <link>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1811546#M66167</link>
      <description>&lt;P&gt;The simplest way to reuse that data is for your customer to store the data in CSV files during the ETL process and have you pull the csv files.&amp;nbsp; In the Qlik Script, which is the language they use to ETL and build the data model, they can add the statement(s).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Store &lt;EM&gt;qliktable&lt;/EM&gt; into lib://datafiles/&lt;EM&gt;myqliktable&lt;/EM&gt;.csv (txt);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Then download the csv files. If you don't want to take that route but instead want to extract directly from the app model yourself, you can use the JSON-RPC API (Engine API).&amp;nbsp; &amp;nbsp;Use the &lt;A href="https://qlik.dev/apis/json-rpc/qix/doc#%23%2Fentries%2FDoc%2Fentries%2FGetTableData" target="_self"&gt;GetTableData()&lt;/A&gt; method to pull data directly from a table or create a hypercube that defines the specific joined fields you want.&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are several libraries that wrap the JSON-RPC API and make life easier -- enigma.js for javascript/nodejs, enigma.go for golang and .&lt;A href="https://help.qlik.com/en-US/sense-developer/May2021/Subsystems/NetSDKAPIref/Content/Home.htm" target="_self"&gt;Net SDK&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is also a REST wrapper&amp;nbsp;&lt;A href="https://github.com/ralfbecher/q-risotto" target="_blank" rel="noopener"&gt;https://github.com/ralfbecher/q-risotto&lt;/A&gt;&amp;nbsp;but I'm not sure the status of this project, check with&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6446"&gt;@rbecher&lt;/a&gt;&amp;nbsp;if you are interested in this one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank" rel="noopener"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank" rel="noopener"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank" rel="noopener"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 29 May 2021 14:28:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1811546#M66167</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-05-29T14:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Looking to extract all data from a data source using backend (non-javascript) API</title>
      <link>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1813491#M66430</link>
      <description>&lt;P&gt;Is it possible to download the files generated by the Qlik Script via an API?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2021 22:45:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1813491#M66430</guid>
      <dc:creator>clondon</dc:creator>
      <dc:date>2021-06-07T22:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Looking to extract all data from a data source using backend (non-javascript) API</title>
      <link>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1814537#M66606</link>
      <description>&lt;P&gt;If by "files generated", you mean the aforementioned csv files, yes. Use an FTP or other file transfer API. These are just just standard files.&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 14:47:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Looking-to-extract-all-data-from-a-data-source-using-backend-non/m-p/1814537#M66606</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-06-11T14:47:56Z</dc:date>
    </item>
  </channel>
</rss>

