<?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: How to extract variable list from a Qlik Sense App? Is there any method in API that gives this output ? Pls suggest in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-extract-variable-list-from-a-Qlik-Sense-App-Is-there-any/m-p/1944566#M16946</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You can use the Variable API.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/May2021/Subsystems/APIs/Content/Sense_ClientAPIs/CapabilityAPIs/qlik-variable-interface.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense-developer/May2021/Subsystems/APIs/Content/Sense_ClientAPIs/CapabilityAPIs/qlik-variable-interface.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bill&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jun 2022 12:39:34 GMT</pubDate>
    <dc:creator>Bill_Britt</dc:creator>
    <dc:date>2022-06-16T12:39:34Z</dc:date>
    <item>
      <title>How to extract variable list from a Qlik Sense App? Is there any method in API that gives this output ? Pls suggest</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-extract-variable-list-from-a-Qlik-Sense-App-Is-there-any/m-p/1944520#M16943</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;My requirement is to extract all variables info along with its definitions. Can anyone pls suggest a way to achieve this via API's?&lt;/P&gt;
&lt;P&gt;Please suggest&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 11:34:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-extract-variable-list-from-a-Qlik-Sense-App-Is-there-any/m-p/1944520#M16943</guid>
      <dc:creator>vish123</dc:creator>
      <dc:date>2022-06-16T11:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract variable list from a Qlik Sense App? Is there any method in API that gives this output ? Pls suggest</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-extract-variable-list-from-a-Qlik-Sense-App-Is-there-any/m-p/1944557#M16945</link>
      <description>&lt;P&gt;You can use the Engine API to create a session object that is retuning all variables. Something like this:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;const variableList = {
    qInfo: {
      qType: "VariableList",
    },
    qVariableListDef: {
      qType: "variable",
    },
  };

  // create session object
  const sessionObj = await doc.createSessionObject(variableList);
  // get the layout of the session object
  const layout = await sessionObj.getLayout();

  // layout.qVariableList.qItems -&amp;gt; all variables definitions

  // you can dispose of the session object if you want
  // await doc.destroySessionObject(sessionObj.id);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="stefanstoichev123_0-1655382376945.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/81932i4B3E565A44C53C7C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="stefanstoichev123_0-1655382376945.png" alt="stefanstoichev123_0-1655382376945.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Stefan&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 12:29:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-extract-variable-list-from-a-Qlik-Sense-App-Is-there-any/m-p/1944557#M16945</guid>
      <dc:creator>stefanstoichev123</dc:creator>
      <dc:date>2022-06-16T12:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract variable list from a Qlik Sense App? Is there any method in API that gives this output ? Pls suggest</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-extract-variable-list-from-a-Qlik-Sense-App-Is-there-any/m-p/1944566#M16946</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You can use the Variable API.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/May2021/Subsystems/APIs/Content/Sense_ClientAPIs/CapabilityAPIs/qlik-variable-interface.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense-developer/May2021/Subsystems/APIs/Content/Sense_ClientAPIs/CapabilityAPIs/qlik-variable-interface.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bill&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 12:39:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-extract-variable-list-from-a-Qlik-Sense-App-Is-there-any/m-p/1944566#M16946</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2022-06-16T12:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract variable list from a Qlik Sense App? Is there any method in API that gives this output ? Pls suggest</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-extract-variable-list-from-a-Qlik-Sense-App-Is-there-any/m-p/2527434#M22440</link>
      <description>&lt;P&gt;You can try &lt;STRONG&gt;Qollect&lt;/STRONG&gt;&amp;nbsp;- my free Qlik Sense extension that pulls app metadata (Measures, Dimensions, Fields, Charts, Variables, Sheets) and exports it to Excel.&lt;BR /&gt;Link: &lt;A href="https://www.regarden.io/extensions/3170c06d-0cbb-462f-a3e6-5303f9763249" target="_new" rel="noopener"&gt;https://www.regarden.io/extensions/3170c06d-0cbb-462f-a3e6-5303f9763249&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Aug 2025 14:08:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-extract-variable-list-from-a-Qlik-Sense-App-Is-there-any/m-p/2527434#M22440</guid>
      <dc:creator>EliGohar</dc:creator>
      <dc:date>2025-08-15T14:08:38Z</dc:date>
    </item>
  </channel>
</rss>

