<?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>article How to use the Raw API Request blocks in Qlik Automate in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/ta-p/1844965</link>
    <description>&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;P&gt;This article explains how the &lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API Request&lt;/STRONG&gt;&lt;/FONT&gt; blocks in Qlik Automate can be used.&lt;/P&gt;
&lt;P&gt;Most connectors in Qlik Automate have a &lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API Request&lt;/STRONG&gt;&lt;/FONT&gt; and a &lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API List Request&lt;/STRONG&gt;&lt;/FONT&gt; block that can make an API call to an API resource of your choosing. These blocks will use the connection's account and credentials.&lt;/P&gt;
&lt;P&gt;Before using these blocks, you should read the API documentation and test the call you want to make in cURL, Postman, or a similar tool.&lt;/P&gt;
&lt;P&gt;Below is a detailed overview of these two blocks and how they should be used:&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API Request&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P data-unlink="true"&gt;&lt;STRONG&gt;Path&lt;BR /&gt;&lt;/STRONG&gt;&lt;SPAN&gt;This block will make an API call to the connector's base URL + a path specified in the "Path" input parameter, such as&amp;nbsp;&lt;SPAN&gt;https://hubspot.com/api/v1/&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;+ users. The connector's base URL is hard-coded in each block implementation.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;Note: Do not specify any query parameters in the Path parameter. Use the Query Parameters input field instead.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Method&lt;BR /&gt;&lt;/STRONG&gt;The next parameter is the method that should be used to request the full URL. This can be one of the following methods: &lt;FONT face="courier new,courier"&gt;GET/POST/PUT/PATCH/DELETE&lt;/FONT&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Body Parameters&lt;/STRONG&gt;&lt;BR /&gt;The Body Parameters input field allows you to build an object of key-value pairs. This object will be converted to a JSON object and will be sent as a body parameter with the request.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Query Parameters&lt;BR /&gt;&lt;/STRONG&gt;The Query Parameters input field will work similarly to the Body Parameters input field. Except that the final object will be transformed to a query string of the format &lt;FONT face="courier new,courier"&gt;&amp;amp;key1=value1?key2=value2&lt;/FONT&gt; and URL encoding will be applied.&lt;/P&gt;
&lt;P&gt;See the Raw API Request block of the Qlik Cloud Services connector below as an example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Emile_Koslowski_2-1633963003979.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/63901i4739372416531DB4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Emile_Koslowski_2-1633963003979.png" alt="Emile_Koslowski_2-1633963003979.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API List Request&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;To retrieve a list of records (that exists out of multiple pages), use the block Raw API List Request. This block has built-in paging so no manual paging with the query parameters is required.&lt;/P&gt;
&lt;P&gt;This block will work similarly to the Raw API Request block, except for the method, which will be a GET request in all connectors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;See the Raw API List Request block of the Qlik Cloud Services connector below as an example:&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Emile_Koslowski_1-1633962888945.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/63900i64FA7E587F34AAA0/image-size/large?v=v2&amp;amp;px=999" role="button" title="Emile_Koslowski_1-1633962888945.png" alt="Emile_Koslowski_1-1633962888945.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Limitations&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;There are three limitations for the Raw API Request block:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The block does not implement pagination.&lt;/LI&gt;
&lt;LI&gt;It is not possible to send empty values in the key-value pair of an object in the body parameter. This is due to UI limitations.&lt;/LI&gt;
&lt;LI&gt;The block is configured with &lt;STRONG data-start="29" data-end="36"&gt;GET&lt;/STRONG&gt; as the default method, even if its changed during execution, the platform still logs the default &lt;STRONG data-start="127" data-end="134"&gt;GET&lt;/STRONG&gt; method.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;</description>
    <pubDate>Fri, 15 Aug 2025 05:26:30 GMT</pubDate>
    <dc:creator>Emile_Koslowski</dc:creator>
    <dc:date>2025-08-15T05:26:30Z</dc:date>
    <item>
      <title>How to use the Raw API Request blocks in Qlik Automate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/ta-p/1844965</link>
      <description>&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;P&gt;This article explains how the &lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API Request&lt;/STRONG&gt;&lt;/FONT&gt; blocks in Qlik Automate can be used.&lt;/P&gt;
&lt;P&gt;Most connectors in Qlik Automate have a &lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API Request&lt;/STRONG&gt;&lt;/FONT&gt; and a &lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API List Request&lt;/STRONG&gt;&lt;/FONT&gt; block that can make an API call to an API resource of your choosing. These blocks will use the connection's account and credentials.&lt;/P&gt;
&lt;P&gt;Before using these blocks, you should read the API documentation and test the call you want to make in cURL, Postman, or a similar tool.&lt;/P&gt;
&lt;P&gt;Below is a detailed overview of these two blocks and how they should be used:&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API Request&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P data-unlink="true"&gt;&lt;STRONG&gt;Path&lt;BR /&gt;&lt;/STRONG&gt;&lt;SPAN&gt;This block will make an API call to the connector's base URL + a path specified in the "Path" input parameter, such as&amp;nbsp;&lt;SPAN&gt;https://hubspot.com/api/v1/&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;+ users. The connector's base URL is hard-coded in each block implementation.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;Note: Do not specify any query parameters in the Path parameter. Use the Query Parameters input field instead.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Method&lt;BR /&gt;&lt;/STRONG&gt;The next parameter is the method that should be used to request the full URL. This can be one of the following methods: &lt;FONT face="courier new,courier"&gt;GET/POST/PUT/PATCH/DELETE&lt;/FONT&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Body Parameters&lt;/STRONG&gt;&lt;BR /&gt;The Body Parameters input field allows you to build an object of key-value pairs. This object will be converted to a JSON object and will be sent as a body parameter with the request.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Query Parameters&lt;BR /&gt;&lt;/STRONG&gt;The Query Parameters input field will work similarly to the Body Parameters input field. Except that the final object will be transformed to a query string of the format &lt;FONT face="courier new,courier"&gt;&amp;amp;key1=value1?key2=value2&lt;/FONT&gt; and URL encoding will be applied.&lt;/P&gt;
&lt;P&gt;See the Raw API Request block of the Qlik Cloud Services connector below as an example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Emile_Koslowski_2-1633963003979.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/63901i4739372416531DB4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Emile_Koslowski_2-1633963003979.png" alt="Emile_Koslowski_2-1633963003979.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Raw API List Request&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;To retrieve a list of records (that exists out of multiple pages), use the block Raw API List Request. This block has built-in paging so no manual paging with the query parameters is required.&lt;/P&gt;
&lt;P&gt;This block will work similarly to the Raw API Request block, except for the method, which will be a GET request in all connectors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;See the Raw API List Request block of the Qlik Cloud Services connector below as an example:&lt;/P&gt;
&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Emile_Koslowski_1-1633962888945.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/63900i64FA7E587F34AAA0/image-size/large?v=v2&amp;amp;px=999" role="button" title="Emile_Koslowski_1-1633962888945.png" alt="Emile_Koslowski_1-1633962888945.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Limitations&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;There are three limitations for the Raw API Request block:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The block does not implement pagination.&lt;/LI&gt;
&lt;LI&gt;It is not possible to send empty values in the key-value pair of an object in the body parameter. This is due to UI limitations.&lt;/LI&gt;
&lt;LI&gt;The block is configured with &lt;STRONG data-start="29" data-end="36"&gt;GET&lt;/STRONG&gt; as the default method, even if its changed during execution, the platform still logs the default &lt;STRONG data-start="127" data-end="134"&gt;GET&lt;/STRONG&gt; method.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 15 Aug 2025 05:26:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/ta-p/1844965</guid>
      <dc:creator>Emile_Koslowski</dc:creator>
      <dc:date>2025-08-15T05:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1846513#M4542</link>
      <description>&lt;P&gt;Great tutorial!&lt;/P&gt;&lt;P&gt;Question: is it possible to use the data-alerts [1] or&amp;nbsp;web-notifications [2]?&lt;/P&gt;&lt;P&gt;I am trying to get a qlik alert result and send it in a slack/teams&lt;/P&gt;&lt;P&gt;I only managed to use the APIs that are in the list:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Available APIs are:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/apps" target="_blank" rel="noopener"&gt;Apps&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/items" target="_blank" rel="noopener"&gt;Items&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/reloads" target="_blank" rel="noopener"&gt;Reloads&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/spaces" target="_blank" rel="noopener"&gt;Spaces&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/users" target="_blank" rel="noopener"&gt;Users&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/data-connections" target="_blank" rel="noopener"&gt;Data-Connections&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/quotas" target="_blank" rel="noopener"&gt;Quotas&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/temp-contents" target="_blank" rel="noopener"&gt;Temporary Contents Service&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/evaluations" target="_blank" rel="noopener"&gt;Evaluations&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://qlik.dev/apis/rest/audits" target="_blank" rel="noopener"&gt;Audits&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;[1]&amp;nbsp;&lt;A href="https://qlik.dev/apis/#rest-api-data-alerts" target="_blank"&gt;https://qlik.dev/apis/#rest-api-data-alerts&lt;/A&gt;&lt;/P&gt;&lt;P&gt;[2] &lt;A href="https://qlik.dev/apis/#rest-api-web-notifications" target="_blank"&gt;https://qlik.dev/apis/#rest-api-web-notifications&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Oct 2021 02:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1846513#M4542</guid>
      <dc:creator>igorgois_</dc:creator>
      <dc:date>2021-10-14T02:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1846975#M4548</link>
      <description>&lt;P&gt;Thanks for the feedback!&lt;/P&gt;
&lt;P&gt;We are working on an update to the Raw API Request blocks, this will include data-alerts and web-notifications.&lt;/P&gt;
&lt;P&gt;Emile&lt;/P&gt;</description>
      <pubDate>Thu, 14 Oct 2021 15:07:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1846975#M4548</guid>
      <dc:creator>Emile_Koslowski</dc:creator>
      <dc:date>2021-10-14T15:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1891094#M5512</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Can you please show us an example of using the DELETE method in the Raw API Request block?&lt;/P&gt;
&lt;P&gt;I have been trying to use the DELETE method of the Raw API Request block, in combination with the Qlik "Items" API, without any success. More specifically, I'm trying to delete data files in a space.&lt;/P&gt;
&lt;P&gt;In the first step I'm using the Raw API List Request to list items (path = items) in a space with the resourceType = dataset. That gives me a list of the qvd's in that space. So far so good.&lt;/P&gt;
&lt;P&gt;In the second step I use the Raw API request and the DELETE method, where I use the path = items/{item id}, where item id is based on the list of item ids in the first step.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That seemingly delete the files when I look in the space, but when I go into the space settings and the Data Sources view, the files are still there? Is this a known issue or am I missing something in my automation blocks?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Mats&lt;/P&gt;
&lt;P&gt;&lt;LI-PRODUCT title="Qlik Application Automation" id="qlikApplicationAutomation"&gt;&lt;/LI-PRODUCT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:02:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1891094#M5512</guid>
      <dc:creator>matsseverin</dc:creator>
      <dc:date>2022-02-09T16:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1891419#M5525</link>
      <description>&lt;P&gt;Hi Mats,&lt;/P&gt;
&lt;P&gt;Here's an example of a DELETE method on the Items API to delete a file:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Emile_Koslowski_1-1644486379906.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/72016iB4563C0833D9F603/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Emile_Koslowski_1-1644486379906.png" alt="Emile_Koslowski_1-1644486379906.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get the same behavior as you when I execute the above automation, the file is removed from the catalog but still visible in the space's settings.&lt;/P&gt;
&lt;P&gt;I'll raise this with the Items API team. But keep in mind that the DELETE endpoint of the Items API is marked as experimental, so it's best not to use it until it becomes stable.&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;BR /&gt;Emile&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 09:46:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1891419#M5525</guid>
      <dc:creator>Emile_Koslowski</dc:creator>
      <dc:date>2022-02-10T09:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1937583#M6539</link>
      <description>&lt;P&gt;Thanks for this tutorial,&lt;/P&gt;
&lt;P&gt;this are my first steps in application automation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to send a API Request to an external supplier.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The needed API is:&lt;/P&gt;
&lt;PRE&gt;https://{current_QCS_tenant_url}/api/{path...&lt;/PRE&gt;
&lt;P&gt;The API request in the block&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RAW API REUQEST is&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;https://{current_qcs_tenant_url}/api/&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;v1&lt;/STRONG&gt;&lt;/FONT&gt;/{path......&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="FrankGrimm_0-1653983896809.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/80683i368B76F6198D4A76/image-size/medium?v=v2&amp;amp;px=400" role="button" title="FrankGrimm_0-1653983896809.png" alt="FrankGrimm_0-1653983896809.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Whats about the &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;v1&lt;/FONT&gt;&lt;/STRONG&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;Frank&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 07:58:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1937583#M6539</guid>
      <dc:creator>FrankGrimm</dc:creator>
      <dc:date>2022-05-31T07:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1937586#M6540</link>
      <description>&lt;P&gt;Hi Frank,&lt;/P&gt;
&lt;P&gt;Can you share a link to the API docs of the endpoint you'd want to call here?&lt;/P&gt;
&lt;P&gt;Emile&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 08:04:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/1937586#M6540</guid>
      <dc:creator>Emile_Koslowski</dc:creator>
      <dc:date>2022-05-31T08:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2028187#M8206</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134157"&gt;@Emile_Koslowski&lt;/a&gt;&amp;nbsp;I am trying to setup this webhook&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://developer.teamwork.com/guides/teamwork-chat-incoming-hooks/post-data-using-incoming-hooks/" target="_blank"&gt;https://developer.teamwork.com/guides/teamwork-chat-incoming-hooks/post-data-using-incoming-hooks/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Should be quite simple, Postman works&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="p_verkooijen_4-1674207456329.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/98504iF74F5A807A5F60FD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="p_verkooijen_4-1674207456329.png" alt="p_verkooijen_4-1674207456329.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However I keep getting an error when using it from Automations&lt;/P&gt;
&lt;P&gt;Test url =&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://chat-hooks.eu.teamwork.com/v1/in/460616/fa9b4fce-b643-4ad9-bfd8-46c8ae4083ae" target="_blank"&gt;https://chat-hooks.eu.teamwork.com/v1/in/460616/fa9b4fce-b643-4ad9-bfd8-46c8ae4083ae&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="p_verkooijen_3-1674207422520.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/98503i221AD03B42F49E36/image-size/medium?v=v2&amp;amp;px=400" role="button" title="p_verkooijen_3-1674207422520.png" alt="p_verkooijen_3-1674207422520.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="p_verkooijen_2-1674207399186.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/98502i45B6D89A9542AFA1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="p_verkooijen_2-1674207399186.png" alt="p_verkooijen_2-1674207399186.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;What am I doing wrong?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2023 09:38:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2028187#M8206</guid>
      <dc:creator>p_verkooijen</dc:creator>
      <dc:date>2023-01-20T09:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031315#M8252</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28986"&gt;@p_verkooijen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any chance you could post this over in our &lt;A href="https://community.qlik.com/t5/Qlik-Application-Automation/bd-p/qlik-application-automation-discussions" target="_blank" rel="noopener"&gt;Automation forums&lt;/A&gt; to get our active engineers engaged on this (or, if this fails, a ticket may be required).&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 07:32:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031315#M8252</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-01-30T07:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031333#M8253</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28597"&gt;@Sonja_Bauernfeind&lt;/a&gt;&amp;nbsp;done&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Application-Automation/How-to-create-a-POST-using-Raw-API-Request-block/td-p/2031332" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Application-Automation/How-to-create-a-POST-using-Raw-API-Request-block/td-p/2031332&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 07:57:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031333#M8253</guid>
      <dc:creator>p_verkooijen</dc:creator>
      <dc:date>2023-01-30T07:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031343#M8254</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28986"&gt;@p_verkooijen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 08:21:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031343#M8254</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-01-30T08:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031382#M8255</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28597"&gt;@Sonja_Bauernfeind&lt;/a&gt;&amp;nbsp;seems I had to use the Call URL block instead&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 09:21:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031382#M8255</guid>
      <dc:creator>p_verkooijen</dc:creator>
      <dc:date>2023-01-30T09:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031403#M8257</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28986"&gt;@p_verkooijen&lt;/a&gt;&amp;nbsp;Glad you got a quick answer to this! I'll see if we need to update this article.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 09:48:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2031403#M8257</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-01-30T09:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2109139#M9991</link>
      <description>&lt;P&gt;Is it possible to use the Raw API Request blocks to post apps from one space to another/publish to managed spaces based on specific tags?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 18:29:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2109139#M9991</guid>
      <dc:creator>FahadAbdu</dc:creator>
      <dc:date>2023-08-23T18:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2110221#M10005</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/213107"&gt;@FahadAbdu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend posting about your query in the&amp;nbsp;&lt;A href="https://community.qlik.com/t5/qlik-application-automation/bd-p/qlik-application-automation-discussions" target="_blank" rel="noopener"&gt;Qlik Application Automation&lt;/A&gt;&amp;nbsp;forum. Provide details for your requirement and use case so that our user base and support agents can assist you best.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Aug 2023 06:55:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2110221#M10005</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-08-28T06:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2113061#M10070</link>
      <description>&lt;P&gt;hello&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks for this tutorial,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would be happy to consult with you.&lt;/P&gt;
&lt;P&gt;Suppose I have a SHEET, there is a table with about 5 fields and it has 6000 records.&lt;BR /&gt;I want to upload all 6000 customers in an API interface to my other system, of course JSON.&lt;BR /&gt;My system knows how to receive a list of a maximum of 4000 customers each time. If I am currently using this block, then I get an error because he tried to load all 6000 from STRAIGHT TABLE, (only 4000 are possible at a time)&lt;BR /&gt;How can I loop? Or what is the solution to upload up to 4000 records each time? I would appreciate your assistance !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 07:00:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2113061#M10070</guid>
      <dc:creator>LiorT</dc:creator>
      <dc:date>2023-09-05T07:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2115491#M10124</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/237502"&gt;@LiorT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post your query and requirements directly in our Qlik Application Automation forum for more assistance.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2023 11:35:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2115491#M10124</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-09-11T11:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Automate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2535877#M16552</link>
      <description>&lt;P&gt;How to add custom headers in the request? E.g&amp;nbsp;&lt;SPAN&gt;referer:&lt;A href="https://xyz.com," target="_blank"&gt;https://xyz.com,&lt;/A&gt;&amp;nbsp;x-qlik-xrfkey:RdcQbciyNQI9QzDN etc?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 14:41:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2535877#M16552</guid>
      <dc:creator>muhammadraza</dc:creator>
      <dc:date>2025-11-11T14:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the Raw API Request blocks in Qlik Automate</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2546275#M17008</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134157"&gt;@Emile_Koslowski&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to use this block with Qlik answer.&lt;/P&gt;&lt;P&gt;I always receive an error 500.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="raw.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/187664i6D4BC20998986539/image-size/large?v=v2&amp;amp;px=999" role="button" title="raw.png" alt="raw.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="raw2.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/187665iFBDDF300E137682F/image-size/large?v=v2&amp;amp;px=999" role="button" title="raw2.png" alt="raw2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Do you know what is not good in my query ?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2026 13:27:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-the-Raw-API-Request-blocks-in-Qlik-Automate/tac-p/2546275#M17008</guid>
      <dc:creator>paulcalvet</dc:creator>
      <dc:date>2026-04-07T13:27:45Z</dc:date>
    </item>
  </channel>
</rss>

