<?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: Get Stream Custom Property values from REST Connection in Management &amp; Governance</title>
    <link>https://community.qlik.com/t5/Management-Governance/Get-Stream-Custom-Property-values-from-REST-Connection/m-p/2506568#M29111</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/320936"&gt;@ldrummond&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;By default there is rest connection called "monitor_apps_REST_stream" in the Qlik Sense. You can use it to fetch stream and its custom properties. If connection is not there, you can create a new rest connection to the QRS endpoint for streams.&lt;/P&gt;
&lt;P&gt;URL: &lt;A href="https://CentralNodeFQDN/qrs/stream/full" target="_blank" rel="noopener"&gt;https://CentralNodeFQDN/qrs/stream/full&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"value" column holds the values of the custom properties tagged at the stream level.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LIB CONNECT TO 'monitor_apps_REST_stream';

RestConnectorMasterTable:
SQL SELECT 
	"id" AS "id_u3",
	"createdDate" AS "createdDate_u0",
	"modifiedDate" AS "modifiedDate_u0",
	"modifiedByUserName" AS "modifiedByUserName_u0",
	"name" AS "name_u2",
	"privileges" AS "privileges_u2",
	"schemaPath" AS "schemaPath_u0",
	"__KEY_root",
	(SELECT 
		"id" AS "id_u0",
		"createdDate",
		"modifiedDate",
		"modifiedByUserName",
		"value",
		"schemaPath",
		"__KEY_customProperties",
		"__FK_customProperties"
	FROM "customProperties" PK "__KEY_customProperties" FK "__FK_customProperties")
FROM JSON (wrap on) "root" PK "__KEY_root";


[Streams-ADgroup-Mapping Temp]:

LOAD 
		UPPER([name_u2])									 AS  [StreamName],
	 	[__KEY_root]
RESIDENT RestConnectorMasterTable
WHERE NOT IsNull([__KEY_root]);

LEFT JOIN 

LOAD	
		UPPER([value]) 									     AS  [AD-GroupName],
		[__FK_customProperties] 					         AS  [__KEY_root]
RESIDENT RestConnectorMasterTable
WHERE NOT IsNull([__FK_customProperties]);
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Mar 2025 15:00:12 GMT</pubDate>
    <dc:creator>AkashPohare_HB</dc:creator>
    <dc:date>2025-03-10T15:00:12Z</dc:date>
    <item>
      <title>Get Stream Custom Property values from REST Connection</title>
      <link>https://community.qlik.com/t5/Management-Governance/Get-Stream-Custom-Property-values-from-REST-Connection/m-p/2502740#M29109</link>
      <description>&lt;P&gt;Has anyone been able to retrieve all Streams and the associated Custom Property(ies) for those streams? I'm using this connection "monitor_apps_REST_app" but am only seeing the Custom Property data associated with an app.&lt;/P&gt;
&lt;P&gt;I'm also able to get the Custom Property data for each User, with the user connection but iust not seeing where it's located for the Streams.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need this to create a custom app for security review purposes.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 16:21:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Get-Stream-Custom-Property-values-from-REST-Connection/m-p/2502740#M29109</guid>
      <dc:creator>ldrummond</dc:creator>
      <dc:date>2025-01-29T16:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Get Stream Custom Property values from REST Connection</title>
      <link>https://community.qlik.com/t5/Management-Governance/Get-Stream-Custom-Property-values-from-REST-Connection/m-p/2504416#M29110</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/320936"&gt;@ldrummond&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't see that this is actually exposed. However, If you go to the tenant /Qmc/Streams you can add the custom properties here and see "the list" of streams.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JandreKillianRIC_0-1738676974640.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/177227iA811A035A16AE312/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JandreKillianRIC_0-1738676974640.png" alt="JandreKillianRIC_0-1738676974640.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;There is a Google Chrome extension that I mentioned in a YouTube video (Check it out if you want to)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://youtu.be/IH6Ewx_JycA?si=vJ4R60Mpsxf4ju9L" target="_blank"&gt;https://youtu.be/IH6Ewx_JycA?si=vJ4R60Mpsxf4ju9L&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The extension is Called&amp;nbsp;&lt;STRONG&gt;Export Qlik Sense QMC tables as CSV&amp;nbsp;&lt;/STRONG&gt;that enables you to download the tables from QMC.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards Jandre&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 13:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Get-Stream-Custom-Property-values-from-REST-Connection/m-p/2504416#M29110</guid>
      <dc:creator>JandreKillianRIC</dc:creator>
      <dc:date>2025-02-04T13:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Get Stream Custom Property values from REST Connection</title>
      <link>https://community.qlik.com/t5/Management-Governance/Get-Stream-Custom-Property-values-from-REST-Connection/m-p/2506568#M29111</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/320936"&gt;@ldrummond&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;By default there is rest connection called "monitor_apps_REST_stream" in the Qlik Sense. You can use it to fetch stream and its custom properties. If connection is not there, you can create a new rest connection to the QRS endpoint for streams.&lt;/P&gt;
&lt;P&gt;URL: &lt;A href="https://CentralNodeFQDN/qrs/stream/full" target="_blank" rel="noopener"&gt;https://CentralNodeFQDN/qrs/stream/full&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"value" column holds the values of the custom properties tagged at the stream level.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LIB CONNECT TO 'monitor_apps_REST_stream';

RestConnectorMasterTable:
SQL SELECT 
	"id" AS "id_u3",
	"createdDate" AS "createdDate_u0",
	"modifiedDate" AS "modifiedDate_u0",
	"modifiedByUserName" AS "modifiedByUserName_u0",
	"name" AS "name_u2",
	"privileges" AS "privileges_u2",
	"schemaPath" AS "schemaPath_u0",
	"__KEY_root",
	(SELECT 
		"id" AS "id_u0",
		"createdDate",
		"modifiedDate",
		"modifiedByUserName",
		"value",
		"schemaPath",
		"__KEY_customProperties",
		"__FK_customProperties"
	FROM "customProperties" PK "__KEY_customProperties" FK "__FK_customProperties")
FROM JSON (wrap on) "root" PK "__KEY_root";


[Streams-ADgroup-Mapping Temp]:

LOAD 
		UPPER([name_u2])									 AS  [StreamName],
	 	[__KEY_root]
RESIDENT RestConnectorMasterTable
WHERE NOT IsNull([__KEY_root]);

LEFT JOIN 

LOAD	
		UPPER([value]) 									     AS  [AD-GroupName],
		[__FK_customProperties] 					         AS  [__KEY_root]
RESIDENT RestConnectorMasterTable
WHERE NOT IsNull([__FK_customProperties]);
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 15:00:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Get-Stream-Custom-Property-values-from-REST-Connection/m-p/2506568#M29111</guid>
      <dc:creator>AkashPohare_HB</dc:creator>
      <dc:date>2025-03-10T15:00:12Z</dc:date>
    </item>
  </channel>
</rss>

