<?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 How to get app name or appid from objectid? in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1705763#M12926</link>
    <description>&lt;P&gt;if i have an object id of&amp;nbsp; 'abcdefg', how to know which app id it belongs to?&lt;/P&gt;&lt;P&gt;I know we can go from app to objectid's from dev hub but can we go from object to app?&lt;/P&gt;</description>
    <pubDate>Wed, 27 May 2020 16:48:42 GMT</pubDate>
    <dc:creator>Karthik3</dc:creator>
    <dc:date>2020-05-27T16:48:42Z</dc:date>
    <item>
      <title>How to get app name or appid from objectid?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1705763#M12926</link>
      <description>&lt;P&gt;if i have an object id of&amp;nbsp; 'abcdefg', how to know which app id it belongs to?&lt;/P&gt;&lt;P&gt;I know we can go from app to objectid's from dev hub but can we go from object to app?&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 16:48:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1705763#M12926</guid>
      <dc:creator>Karthik3</dc:creator>
      <dc:date>2020-05-27T16:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to get app name or appid from objectid?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1705774#M12928</link>
      <description>&lt;P&gt;If you have the Operations Monitor installed, you can search for an Object ID on the bottom table on the Apps sheet.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 17:05:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1705774#M12928</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2020-05-27T17:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to get app name or appid from objectid?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1705787#M12930</link>
      <description>&lt;P&gt;The objectid which we see from devhub&amp;gt;single configurator and the objectids from the operations monitor are different.&lt;/P&gt;&lt;P&gt;I don't see any objectids ex:&amp;nbsp;&lt;STRONG&gt;Ftpvc4 with 6 characters in operations monitor?&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 18:03:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1705787#M12930</guid>
      <dc:creator>Karthik3</dc:creator>
      <dc:date>2020-05-27T18:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to get app name or appid from objectid?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1705795#M12931</link>
      <description>&lt;P&gt;You're right.&amp;nbsp; I don't know how the one translates to the other...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 18:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1705795#M12931</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2020-05-27T18:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to get app name or appid from objectid?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1721692#M12942</link>
      <description>&lt;P&gt;Let's break objects into two groups:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Sheets&lt;/LI&gt;&lt;LI&gt;Other objects (e.g. visualizations inside of sheets)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;For (1), this is exposed via the Qlik Repository Service. An example call would be GET&amp;nbsp;/qrs/app/object/full?filter=(engineObjectId eq '46d7c133-5f54-45cf-87c1-7ceb93b2e584')&lt;/P&gt;&lt;P&gt;For (2), this is a trickier topic and would require Engine API calls (which are simulated in the Dev-Hub). I am not an Engine API guy to provide a simple example, but has been handled in the &lt;A href="https://github.com/eapowertools/qs-telemetry-dashboard/" target="_self"&gt;Qlik Sense Telemetry Dashboard project&lt;/A&gt;. As a part of this NodeJS Scripts are executed which build out a metadata repository of apps. apps.csv = apps, sheets.csv = sheets (joined to apps with appid), and visualizations (joined with sheets with sheetId). That project is a bit heavy for this discrete ask but it's the easiest method that I am aware of to do this without writing out Node scripts yourself.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 11:26:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-app-name-or-appid-from-objectid/m-p/1721692#M12942</guid>
      <dc:creator>Levi_Turner</dc:creator>
      <dc:date>2020-06-24T11:26:44Z</dc:date>
    </item>
  </channel>
</rss>

