<?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: Issue using variable in REST URL with GET method (works with POST) in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544896#M15423</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/128408"&gt;@ylchuang&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Awesome! Good to hear that.&lt;BR /&gt;There is a native pause function in Qlik. It is called Sleep. This is the reference:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/Sleep.htm" target="_blank"&gt;https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/Sleep.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;STRONG&gt;Mark Costa&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Mar 2026 13:24:58 GMT</pubDate>
    <dc:creator>marksouzacosta</dc:creator>
    <dc:date>2026-03-16T13:24:58Z</dc:date>
    <item>
      <title>Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544592#M15412</link>
      <description>&lt;DIV&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I’m struggling with a strange behavior when using &lt;STRONG&gt;variables in the REST Connector URL with the GET method&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What works&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;If the URL variable is a &lt;STRONG&gt;static string&lt;/STRONG&gt;, the REST call works as expected:&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;set vURL=https://mktorest.com/bulk/v1/leads/export/abc123/file.json;

LIB CONNECT TO 'Marketo File';

RestConnectorMasterTable:
SQL SELECT 
	"company",
    "email",
    "firstName",
    "lastName"
FROM CSV (header on, delimiter ",", quote """") "CSV_source"
			WITH CONNECTION (
            			URL "$(vURL)"						
);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What does NOT work&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;If the URL variable is built using &lt;STRONG&gt;another variable&lt;/STRONG&gt;, the REST call fails, even though the resolved URL is identical.&lt;/DIV&gt;&lt;LI-CODE lang="javascript"&gt;let vExportID='abc123';
set vURL=https://mktorest.com/bulk/v1/leads/export/$(vExportID)/file.json;

TRACE vURL: $(vURL);

LIB CONNECT TO 'Marketo File';

RestConnectorMasterTable:
SQL SELECT 
	"company",
    "email",
    "firstName",
    "lastName"
FROM CSV (header on, delimiter ",", quote """") "CSV_source"
			WITH CONNECTION (
            			URL "$(vURL)"						
);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The TRACE log shows the exact same URL string as the hard‑coded version.&lt;/LI&gt;&lt;LI&gt;The same variable pass‑through works when the REST call uses POST, but fails with GET.&lt;/LI&gt;&lt;LI&gt;The REST connection has “Allow WITH CONNECTION” enabled.&lt;/LI&gt;&lt;LI&gt;No query parameters are involved. The variable is part of the URL.&lt;/LI&gt;&lt;LI&gt;Using SET and LET have the same outcome.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Is this a known limitation or quirk of the Qlik REST Connector with GET request?&lt;BR /&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 14:49:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544592#M15412</guid>
      <dc:creator>ylchuang</dc:creator>
      <dc:date>2026-03-11T14:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544623#M15413</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/128408"&gt;@ylchuang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SET vExportID = 'abc123';
LET vURL = 'https://mktorest.com/bulk/v1/leads/export/$(vExportID)/file.json';&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Explanation:&lt;/P&gt;&lt;P&gt;Use SET for static values. Use single quotes when the values are strings. For numeric values you don't need single quotes.&lt;/P&gt;&lt;P&gt;Use LET when you need to process something before assign the value to the variable. In your case, vURL, you are adding the vExportID to a string value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mark Costa&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2026 02:01:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544623#M15413</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2026-03-12T02:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544630#M15414</link>
      <description>&lt;P&gt;Thanks for the suggestion.&lt;/P&gt;&lt;P&gt;It does work if vExportID is static, but actually vExportID is dynamic from a previous table. That's why I used LET.&lt;/P&gt;&lt;P&gt;I tried below combinations and sadly none of them worked.&lt;/P&gt;&lt;P&gt;They work in POST method though.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Both LETs &amp;gt;&amp;gt; does not work&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Let vExportID = peek('exportId',0,'result');
Let vURL = 'https://mktorest.com/bulk/v1/leads/export/$(vExportID)/file.json';&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LET for dynamic vExportID, SET for vURL &amp;gt;&amp;gt; does not work&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Let vExportID = peek('exportId',0,'result'); 
SET vURL = 'https://mktorest.com/bulk/v1/leads/export/$(vExportID)/file.json';&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2026 02:41:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544630#M15414</guid>
      <dc:creator>ylchuang</dc:creator>
      <dc:date>2026-03-12T02:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544665#M15415</link>
      <description>&lt;P&gt;Using LET in both is the correct approach.&lt;BR /&gt;&lt;BR /&gt;I believe the problem is something else.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;What is the error message?&lt;/LI&gt;&lt;LI&gt;Can you share the REST API Data Connection settings you are using?&lt;/LI&gt;&lt;LI&gt;Why are you trying to use GET instead of POST in this case?&lt;/LI&gt;&lt;LI&gt;Can you share a valid Endpoint to test on our side?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mark Costa&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2026 12:41:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544665#M15415</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2026-03-12T12:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544671#M15416</link>
      <description>&lt;P&gt;Thanks so much for checking. Below is when using both LETs&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Error Message&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;The following error occurred:
The remote server returned an error: (404) Not Found.

The error occurred here:
RestConnectorMasterTable:
SQL SELECT 
	"company",
    "email",
    "firstName",
    "lastName"
FROM CSV (header on, delimiter ",", quote """") "CSV_source"
			WITH CONNECTION (
            			URL "https://mktorest.com/bulk/v1/leads/export/1468a515-d55d-4042-9aa6-b354e44c6aee/file.json",
						HTTPHEADER "Authorization" "Bearer $(vToken)"
						);&lt;/LI-CODE&gt;&lt;P&gt;If I type in the same URL as string, it works without issue.&lt;/P&gt;&lt;P&gt;This URL is coming from variable vURL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;REST API Data Connection Settings&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Untitled.png" style="width: 338px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/187281iACDE7BCF80B5C1BB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GET as the last step&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;According to Marketo documentation, first we need to POST: create.json &amp;gt; then POST: enqueue.json &amp;gt; and after the file is created, GET: file.json.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately I don't have a public endpoint for testing. But I will check our team.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2026 12:59:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544671#M15416</guid>
      <dc:creator>ylchuang</dc:creator>
      <dc:date>2026-03-12T12:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544675#M15417</link>
      <description>&lt;P&gt;Hmm, if I understand it right, maybe at the time you are doing the GET automatically, the file is not ready yet. Is that a possibility? If so, is there an endpoint to check if the file is ready to get?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2026 13:32:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544675#M15417</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2026-03-12T13:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544679#M15418</link>
      <description>&lt;P&gt;I thought so at first as well, so I tested using following steps:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1.&amp;nbsp;Confirm file is ready&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I copied and pasted the URL as string directly into URL "https://...." and then reload. The file can be read without issue.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2.&amp;nbsp;Store confirmed URL as text in a table and then assign vExportID to value in this table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This ensures vExportID is not using a newly generated id from the previous loading script, but is using this confirmed ExportID that has file ready.&lt;/P&gt;&lt;P&gt;This is also done within a few minutes, so the file is not expired.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;[tbl_ExportID]:
NoConcatenate Load * Inline [
ID
1468a515-d55d-4042-9aa6-b354e44c6aee
];


Let vExport = peek('ID',0,'tbl_ExportID');
Let vURL = 'https://mktorest.com/bulk/v1/leads/export/$(vExportID)/file.json';&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3. Reload &amp;gt; Same error message&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;After hitting reload, the same error message appears.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems GET: URL cannot handle variable that is not static string.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;The following error occurred:
The remote server returned an error: (404) Not Found.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2026 13:54:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544679#M15418</guid>
      <dc:creator>ylchuang</dc:creator>
      <dc:date>2026-03-12T13:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544681#M15419</link>
      <description>&lt;P&gt;In this last version you sent, the variable names are not matching:&lt;/P&gt;&lt;P&gt;Let &lt;STRONG&gt;vExport&lt;/STRONG&gt; = peek('ID',0,'tbl_ExportID');&lt;/P&gt;&lt;P&gt;Should be&lt;/P&gt;&lt;P&gt;Let &lt;STRONG&gt;vExportID&lt;/STRONG&gt; = peek('ID',0,'tbl_ExportID');&lt;/P&gt;&lt;P&gt;Can you please double check?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2026 14:16:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544681#M15419</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2026-03-12T14:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544682#M15420</link>
      <description>&lt;P&gt;Sorry... typo here, but the actual script is using&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Let vExportID = peek('ID',0,'tbl_ExportID');&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2026 14:19:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544682#M15420</guid>
      <dc:creator>ylchuang</dc:creator>
      <dc:date>2026-03-12T14:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544745#M15421</link>
      <description>&lt;P&gt;If I understood correctly you are not using SET because you need it as a dynamic expression.&lt;/P&gt;&lt;P&gt;If that is the case, just use two variables.. first with LET and then define SET from LET , and pass the SET one as a parameter.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/187296i815B9BBE2EA9DA70/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2026 03:50:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544745#M15421</guid>
      <dc:creator>Gui_Approbato</dc:creator>
      <dc:date>2026-03-13T03:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544872#M15422</link>
      <description>&lt;P&gt;I feel quite silly, after adding a pause of a few minutes between POST and GET, the files can be retrieved via GET.&lt;/P&gt;&lt;P&gt;But since Qlik doesn't seem to have a native pause function, I split the loading script into two apps and schedule them with some minutes apart.&lt;/P&gt;&lt;P&gt;I think it is also possible to check status first and then load, but the chance of it happening is quite low, so I will just simply schedule them with enough buffer time.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 09:31:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544872#M15422</guid>
      <dc:creator>ylchuang</dc:creator>
      <dc:date>2026-03-16T09:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544896#M15423</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/128408"&gt;@ylchuang&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Awesome! Good to hear that.&lt;BR /&gt;There is a native pause function in Qlik. It is called Sleep. This is the reference:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/Sleep.htm" target="_blank"&gt;https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/Sleep.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;STRONG&gt;Mark Costa&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 13:24:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544896#M15423</guid>
      <dc:creator>marksouzacosta</dc:creator>
      <dc:date>2026-03-16T13:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using variable in REST URL with GET method (works with POST)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544899#M15424</link>
      <description>&lt;P&gt;Great! Didn't know about Sleep function.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me rework my app a bit.&lt;/P&gt;&lt;P&gt;Thanks again for the great help, Mark!&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 13:44:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Issue-using-variable-in-REST-URL-with-GET-method-works-with-POST/m-p/2544899#M15424</guid>
      <dc:creator>ylchuang</dc:creator>
      <dc:date>2026-03-16T13:44:47Z</dc:date>
    </item>
  </channel>
</rss>

