<?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: Passing a parameter through a URL into a variable in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2140208#M19530</link>
    <description>&lt;P&gt;i Hope my solution was benefit for you.&lt;/P&gt;</description>
    <pubDate>Wed, 22 Nov 2023 09:54:37 GMT</pubDate>
    <dc:creator>ajaykakkar93</dc:creator>
    <dc:date>2023-11-22T09:54:37Z</dc:date>
    <item>
      <title>Passing a parameter through a URL into a variable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2134122#M19399</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Assuming I have the following address structure for the application:&lt;BR /&gt;&lt;A href="http://new-ui:8090/bc/sense/app/bdb93862-48e3-4605-a353-97424acec650/sheet/7f7d14c0-c422-4eda-b297-a" target="_blank" rel="noopener"&gt;http://new-ui:8090/bc/sense/app/bdb93862-48e3-4605-a353-97424acec650/sheet/7f7d14c0-c422-4eda-b297-a&lt;/A&gt;...&lt;/P&gt;
&lt;P&gt;I want to pass a parameter (a dynamic value that changes every time the user signs into the application) into a variable that exists in the application. Is it possible?&lt;/P&gt;
&lt;P&gt;I am not interested in working with a field and making a selection because the value I am passing does not exist in the data model and therefore I want to work with a variable.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;To make it clearer - this is the flow:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;We are working in embedded analytics method which means that Qlik application is intergrated in our product and we open it using iframe (with the URL I mentioned earlier). So now we want to pass the parameter of session ID of the user (which is created once the user logs into our product) from our product and work with it in Qlik application.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Many Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2023 13:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2134122#M19399</guid>
      <dc:creator>EliGohar</dc:creator>
      <dc:date>2023-11-02T13:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a parameter through a URL into a variable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2134355#M19403</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Yes you can do that using a custom extension, unfortunately, that extension doesn't exists but it is doable.&lt;/P&gt;
&lt;P&gt;follow the steps below&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create a basic extension&lt;/LI&gt;
&lt;LI&gt;Using javascript get the URL of the page&lt;/LI&gt;
&lt;LI&gt;Get the parameter from the URL which is needed &amp;amp; save it into a javascript variable&lt;/LI&gt;
&lt;LI&gt;Using capability API -&amp;gt; Variable API you can use setcontent() to set your value to a variable name &amp;amp; get your product working&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Fri, 03 Nov 2023 07:42:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2134355#M19403</guid>
      <dc:creator>ajaykakkar93</dc:creator>
      <dc:date>2023-11-03T07:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a parameter through a URL into a variable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2134425#M19407</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/54934"&gt;@EliGohar&lt;/a&gt;&lt;/SPAN&gt; , unfortunately this is not possible out-of-the-box. As suggested by Ajay you can use an extension, but this means that you have to add the extension on the correct sheet, otherwise the code will not be triggered.&lt;/P&gt;
&lt;P&gt;Another option is to use a very simple mashup (web application), which basically render you Qlik app with an IFrame and then read url parameter and set QlikVariable content.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2023 10:04:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2134425#M19407</guid>
      <dc:creator>alex_colombo</dc:creator>
      <dc:date>2023-11-03T10:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a parameter through a URL into a variable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2140087#M19527</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Yes you can do that using a custom extension, unfortunately, that extension doesn't exists but it is doable.&lt;/P&gt;
&lt;P&gt;follow the steps below&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create a basic extension&lt;/LI&gt;
&lt;LI&gt;Using javascript get the URL of the page&lt;/LI&gt;
&lt;LI&gt;Get the parameter from the URL which is needed &amp;amp; save it into a javascript variable&lt;/LI&gt;
&lt;LI&gt;Using capability API -&amp;gt; Variable API you can use setcontent() to set your value to a variable name &amp;amp; get your product working&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Wed, 22 Nov 2023 05:00:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2140087#M19527</guid>
      <dc:creator>ajaykakkar93</dc:creator>
      <dc:date>2023-11-22T05:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a parameter through a URL into a variable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2140128#M19528</link>
      <description>&lt;P&gt;That's what I did in the end, thank you very much&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 07:17:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2140128#M19528</guid>
      <dc:creator>EliGohar</dc:creator>
      <dc:date>2023-11-22T07:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a parameter through a URL into a variable</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2140208#M19530</link>
      <description>&lt;P&gt;i Hope my solution was benefit for you.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 09:54:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Passing-a-parameter-through-a-URL-into-a-variable/m-p/2140208#M19530</guid>
      <dc:creator>ajaykakkar93</dc:creator>
      <dc:date>2023-11-22T09:54:37Z</dc:date>
    </item>
  </channel>
</rss>

