<?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 get the ObjectId's for a sheet in qlik sense using API? in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409775#M8640</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to get it from Single Configurator (in Dev-Hub)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Dec 2017 11:35:57 GMT</pubDate>
    <dc:creator>shraddha_g</dc:creator>
    <dc:date>2017-12-01T11:35:57Z</dc:date>
    <item>
      <title>How to get the ObjectId's for a sheet in qlik sense using API?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409774#M8639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to get the API to get the Object Id's for a sheet in qlik sense based on app id and sheet id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 08:09:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409774#M8639</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-01T08:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the ObjectId's for a sheet in qlik sense using API?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409775#M8640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to get it from Single Configurator (in Dev-Hub)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 11:35:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409775#M8640</guid>
      <dc:creator>shraddha_g</dc:creator>
      <dc:date>2017-12-01T11:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the ObjectId's for a sheet in qlik sense using API?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409776#M8641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I need the API call to get the Objects based on sheet id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 11:38:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409776#M8641</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-01T11:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the ObjectId's for a sheet in qlik sense using API?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409777#M8642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Is it something like this you mean:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15121319545841506 jive_text_macro" jivemacro_uid="_15121319545841506" modifiedtitle="true"&gt;
&lt;P&gt;var app = qlik.currApp(this);&lt;/P&gt;
&lt;P&gt;var currentSheetId = qlik.navigation.getCurrentSheetId();&lt;/P&gt;
&lt;P&gt;app.getAppObjectList( 'sheet', function(reply){&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.each(reply.qAppObjectList.qItems, function(key, value) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(currentSheetId.sheetId==value.qInfo.qId){&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Only objects that are on the same sheet as the extension&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;
&lt;P&gt;});&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Dec 2017 12:53:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409777#M8642</guid>
      <dc:creator>_jespers_</dc:creator>
      <dc:date>2017-12-01T12:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the ObjectId's for a sheet in qlik sense using API?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409778#M8643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the reply.&lt;/P&gt;&lt;P&gt;Also, I would like to know whether there is any API call something like '/qrs/selection/{id}/app/full' to get the objects in rest client?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Dec 2017 05:53:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1409778#M8643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-04T05:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the ObjectId's for a sheet in qlik sense using API?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1625484#M11346</link>
      <description>&lt;P&gt;In the rare case of not having worked it out yet in this long time but mainly to&amp;nbsp;&lt;/P&gt;&lt;P&gt;help out anyone else who's still visiting this post... The rest API call is:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="typ"&gt;Get&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"/qrs/app/object/full?Xrfkey=ABCDEFG123456789&amp;amp;filter=app.id+eq+"&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;+&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; [APPID HERE]&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;);&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Xrfkey is optional, and in case you want to add a filter to filter out sheets only:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="typ"&gt;Get&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str"&gt;"/qrs/app/object/full?Xrfkey=ABCDEFG123456789&amp;amp;filter=app.id+eq+"&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;+&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; [APPID HERE]&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;+&lt;/SPAN&gt; &lt;SPAN class="str"&gt;"+and+objectType+eq+%27sheet%27"&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;);&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Best luck on your coding&amp;nbsp;&lt;SPAN&gt;endeavours!&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="vmod"&gt;&lt;DIV class="vmod"&gt;&lt;DIV&gt;&lt;DIV class="BvCW1"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 18 Sep 2019 21:30:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1625484#M11346</guid>
      <dc:creator>joshuapierlo</dc:creator>
      <dc:date>2019-09-18T21:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the ObjectId's for a sheet in qlik sense using API?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1632831#M11489</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can visit this video for this solution.&lt;/P&gt;&lt;P&gt;&lt;A title="Qlik Sense Extensions List Using API" href="https://www.youtube.com/watch?v=vjiH8yoTmVk" target="_blank" rel="noopener"&gt;Qlik Sense Extensions List Using API&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ajay Kakkar&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 07:14:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-the-ObjectId-s-for-a-sheet-in-qlik-sense-using-API/m-p/1632831#M11489</guid>
      <dc:creator>ajaykakkar93</dc:creator>
      <dc:date>2019-10-09T07:14:26Z</dc:date>
    </item>
  </channel>
</rss>

