<?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 [QlikCloud] Get private sheets with API in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2412006#M19763</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;For Qlik Cloud i would like to list all sheets, regardless if they are private or not (app in managed space). I tried with a node.js app together with&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/229862"&gt;@qlik&lt;/a&gt;.SDK and an OAuth2 client (M2M) but my code only lists public sheets - anyone know a solution?&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;const Qlik = require('@qlik/sdk').default;
const { AuthType } = require("@qlik/sdk");

//config-values
const host = 'xxx.eu.qlikcloud.com';
const clientId = 'asdfasdfasdfasdfasdf';
const clientSecret = 'asdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdf';
const appId = 'asdfasdfasdfasdfasdf';

const config =  {
  authType: AuthType.OAuth2,
  host: host,
  clientId: clientId,
  clientSecret: clientSecret
};

(async () =&amp;gt; {
  const qlik = new Qlik(config);
  await qlik.auth.authorize();
  const app = await qlik.apps.get(appId);
  await app.open();

  const oList = await app.getObjects({
    qTypes: ["sheet"],
    qIncludeSessionObjects: true,
});
  console.log(oList);
  process.exit();
}
)();&lt;/LI-CODE&gt;</description>
    <pubDate>Mon, 29 Jan 2024 13:51:16 GMT</pubDate>
    <dc:creator>blaise</dc:creator>
    <dc:date>2024-01-29T13:51:16Z</dc:date>
    <item>
      <title>[QlikCloud] Get private sheets with API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2412006#M19763</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;For Qlik Cloud i would like to list all sheets, regardless if they are private or not (app in managed space). I tried with a node.js app together with&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/229862"&gt;@qlik&lt;/a&gt;.SDK and an OAuth2 client (M2M) but my code only lists public sheets - anyone know a solution?&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;const Qlik = require('@qlik/sdk').default;
const { AuthType } = require("@qlik/sdk");

//config-values
const host = 'xxx.eu.qlikcloud.com';
const clientId = 'asdfasdfasdfasdfasdf';
const clientSecret = 'asdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdf';
const appId = 'asdfasdfasdfasdfasdf';

const config =  {
  authType: AuthType.OAuth2,
  host: host,
  clientId: clientId,
  clientSecret: clientSecret
};

(async () =&amp;gt; {
  const qlik = new Qlik(config);
  await qlik.auth.authorize();
  const app = await qlik.apps.get(appId);
  await app.open();

  const oList = await app.getObjects({
    qTypes: ["sheet"],
    qIncludeSessionObjects: true,
});
  console.log(oList);
  process.exit();
}
)();&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 29 Jan 2024 13:51:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2412006#M19763</guid>
      <dc:creator>blaise</dc:creator>
      <dc:date>2024-01-29T13:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: [QlikCloud] Get private sheets with API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2412028#M19764</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6053"&gt;@blaise&lt;/a&gt;&amp;nbsp;- Unfortunately, this is not currently possible. Product is working towards this capability, but at this time, private content is not addressable/manageable by an Admin role.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 14:26:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2412028#M19764</guid>
      <dc:creator>jprdonnelly</dc:creator>
      <dc:date>2024-01-29T14:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: [QlikCloud] Get private sheets with API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2412031#M19765</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6053"&gt;@blaise&lt;/a&gt;&amp;nbsp;, this is indeed coming soon. FYI, I recommend checking out&amp;nbsp;@qlik/api as well. Very similar to your code up above, but with official Qlik supported typescript typings.&lt;/P&gt;
&lt;P&gt;Learn more about &lt;A href="https://github.com/qlik-oss/qlik-api-ts" target="_self"&gt;qlik/api here&lt;/A&gt; and stay tuned to the &lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Introduction/saas-change-log.htm" target="_self"&gt;SaaS what's new&lt;/A&gt; and &lt;A href="https://qlik.dev/changelog/" target="_self"&gt;qlik.dev changelog&lt;/A&gt; for updates on private content.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 14:30:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2412031#M19765</guid>
      <dc:creator>Jeffrey_Goldberg</dc:creator>
      <dc:date>2024-01-29T14:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: [QlikCloud] Get private sheets with API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2427345#M20107</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE id="tw-target-text" class="tw-data-text tw-text-large tw-ta" dir="ltr" data-placeholder="Tradução" data-ved="2ahUKEwimoseQ5N2EAxWJrpUCHWMOD8AQ3ewLegQIBRAU"&gt;&lt;SPAN class="Y2IQFc"&gt;To obtain the list of sheets in an application using Qlik Cloud, use the rest &lt;BR /&gt;evaluations API, it returns the list of all public sheets.&lt;BR /&gt;POST/v1/apps/{guid}/evaluations&lt;BR /&gt;GET/v1/apps/{guid}/evaluations&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 18:53:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2427345#M20107</guid>
      <dc:creator>alessandrozagoto</dc:creator>
      <dc:date>2024-03-05T18:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: [QlikCloud] Get private sheets with API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2513160#M22015</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/141812"&gt;@jprdonnelly&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Any news on this topic ? I need access to retrieve all sheets on my tenant to monitor licence usage &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 13:59:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2513160#M22015</guid>
      <dc:creator>paulcalvet</dc:creator>
      <dc:date>2025-04-04T13:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: [QlikCloud] Get private sheets with API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2513163#M22016</link>
      <description>&lt;P&gt;Sorry,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/141812"&gt;@jprdonnelly&lt;/a&gt;&amp;nbsp;I found the informations here :&lt;/P&gt;&lt;P&gt;&lt;A href="https://qlik.dev/manage/platform-operations/private-content-bots/" target="_blank"&gt;https://qlik.dev/manage/platform-operations/private-content-bots/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 14:06:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/QlikCloud-Get-private-sheets-with-API/m-p/2513163#M22016</guid>
      <dc:creator>paulcalvet</dc:creator>
      <dc:date>2025-04-04T14:06:12Z</dc:date>
    </item>
  </channel>
</rss>

