<?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 DELETE method in Qlik Sense REST API in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/DELETE-method-in-Qlik-Sense-REST-API/m-p/1585097#M3979</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I need to use DELETE method in&amp;nbsp;Qlik Sense REST API connection. When I am creating the data connection, it gives options for only GET and POST. Is there any way to use DELETE method in Qlik Sense ?&lt;/P&gt;&lt;P&gt;Looking forward to the replies!&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Madhuparna Dhar&lt;/P&gt;</description>
    <pubDate>Thu, 23 Dec 2021 13:23:26 GMT</pubDate>
    <dc:creator>madhuparnadhar</dc:creator>
    <dc:date>2021-12-23T13:23:26Z</dc:date>
    <item>
      <title>DELETE method in Qlik Sense REST API</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/DELETE-method-in-Qlik-Sense-REST-API/m-p/1585097#M3979</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I need to use DELETE method in&amp;nbsp;Qlik Sense REST API connection. When I am creating the data connection, it gives options for only GET and POST. Is there any way to use DELETE method in Qlik Sense ?&lt;/P&gt;&lt;P&gt;Looking forward to the replies!&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Madhuparna Dhar&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 13:23:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/DELETE-method-in-Qlik-Sense-REST-API/m-p/1585097#M3979</guid>
      <dc:creator>madhuparnadhar</dc:creator>
      <dc:date>2021-12-23T13:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: DELETE method in Qlik Sense REST API</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/DELETE-method-in-Qlik-Sense-REST-API/m-p/1585110#M3980</link>
      <description>&lt;P&gt;By default, the Qlik Sense Rest Connector doesn´t provide data manipulation, only read data:&lt;/P&gt;
&lt;P&gt;"The &lt;SPAN class="CommonComponentsREST_Cnx"&gt;Qlik REST Connector&lt;/SPAN&gt; enables &lt;SPAN class="CommonComponentsQlik Sense"&gt;Qlik Sense&lt;/SPAN&gt; and &lt;SPAN class="CommonComponentsQlikView"&gt;QlikView&lt;/SPAN&gt; to &lt;STRONG&gt;efficiently load data&lt;/STRONG&gt; into &lt;SPAN class="CommonComponentsCompanyName"&gt;Qlik&lt;/SPAN&gt; apps from a REST data source"&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/connectors/Subsystems/REST_connector_help/Content/Connectors_REST/REST-connector.htm" target="_blank"&gt;https://help.qlik.com/en-US/connectors/Subsystems/REST_connector_help/Content/Connectors_REST/REST-connector.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2019 13:37:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/DELETE-method-in-Qlik-Sense-REST-API/m-p/1585110#M3980</guid>
      <dc:creator>Ricardo_Gerhard</dc:creator>
      <dc:date>2019-05-27T13:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: DELETE method in Qlik Sense REST API</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/DELETE-method-in-Qlik-Sense-REST-API/m-p/1585893#M3986</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you can't set up DELETE method directly in connection but you can override POST method using solution presented below (&lt;EM&gt;&lt;STRONG&gt;HTTPHEADER "X-HTTP-Method-Override" "DELETE",&lt;/STRONG&gt; &lt;/EM&gt;).&lt;/P&gt;&lt;P&gt;I use it in scripts calling NPrinting API via Qlik RESTFull connector (&lt;A href="https://nprintingadventures.wordpress.com/2019/04/08/nprinting-api-qlik-rest-subroutines/" target="_blank" rel="noopener"&gt;look here if you are interested&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Let vDeleteUserURL = 'https://$(vNPrintingServer):4993/api/v1/users/'&amp;amp;'$(vUserId)'; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Trace Deleting user: $(vDeleteUserURL);&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;LIB CONNECT TO '$(vConnection_POST)';&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;RestDeleteUserTable:&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SQL SELECT&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;"__KEY_data"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;FROM &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;JSON (wrap off) "data" PK "__KEY_data"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;WITH &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;CONNECTION( URL "$(vDeleteUserURL)",&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;HTTPHEADER "Content-Type" "application/json", &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;HTTPHEADER "X-HTTP-Method-Override" "DELETE",&lt;/STRONG&gt; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;HTTPHEADER "cookie" "$(vCookie)")&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Lech&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 03:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/DELETE-method-in-Qlik-Sense-REST-API/m-p/1585893#M3986</guid>
      <dc:creator>Lech_Miszkiewicz</dc:creator>
      <dc:date>2019-05-29T03:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: DELETE method in Qlik Sense REST API</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/DELETE-method-in-Qlik-Sense-REST-API/m-p/1593757#M4064</link>
      <description>&lt;P&gt;Thanks for you reply!&lt;/P&gt;&lt;P&gt;The name of this connector is wrong!&lt;BR /&gt;How can you name a connector "&lt;STRONG&gt;REST"&lt;/STRONG&gt; and do not allow all the&amp;nbsp;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Re&lt;/FONT&gt;&lt;/STRONG&gt;presentational &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;S&lt;/STRONG&gt;&lt;/FONT&gt;tate &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;T&lt;/FONT&gt;&lt;/STRONG&gt;ransfer methods?&lt;/P&gt;&lt;P&gt;It should be called "only read REST".&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 16:50:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/DELETE-method-in-Qlik-Sense-REST-API/m-p/1593757#M4064</guid>
      <dc:creator>matheuzzy</dc:creator>
      <dc:date>2019-06-19T16:50:44Z</dc:date>
    </item>
  </channel>
</rss>

