<?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: Can Qlik Alerting send out alerts to external REST API? in Reporting Service &amp; Alerting</title>
    <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Can-Qlik-Alerting-send-out-alerts-to-external-REST-API/m-p/1729087#M2031</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6748"&gt;@stevedark&lt;/a&gt;&amp;nbsp;, I'm aware or the load script option to send out alerts during script exexcution. I was hoping to find this functionality in Qlik Altering, but apparently this will be added in a future release.&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jul 2020 05:21:33 GMT</pubDate>
    <dc:creator>ssamuels</dc:creator>
    <dc:date>2020-07-20T05:21:33Z</dc:date>
    <item>
      <title>Can Qlik Alerting send out alerts to external REST API?</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Can-Qlik-Alerting-send-out-alerts-to-external-REST-API/m-p/1722323#M2028</link>
      <description>&lt;P&gt;I want to send out alerts to external REST API's through HTTP GET or POST requests. Is this possible?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 15:57:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Can-Qlik-Alerting-send-out-alerts-to-external-REST-API/m-p/1722323#M2028</guid>
      <dc:creator>ssamuels</dc:creator>
      <dc:date>2025-01-29T15:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can Qlik Alerting send out alerts to external REST API?</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Can-Qlik-Alerting-send-out-alerts-to-external-REST-API/m-p/1723460#M2029</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is not currently possible but is on the roadmap as a possible capability that is introduced in a later release.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sunil&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 11:03:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Can-Qlik-Alerting-send-out-alerts-to-external-REST-API/m-p/1723460#M2029</guid>
      <dc:creator>Sunil_Kenth</dc:creator>
      <dc:date>2020-06-30T11:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can Qlik Alerting send out alerts to external REST API?</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Can-Qlik-Alerting-send-out-alerts-to-external-REST-API/m-p/1729074#M2030</link>
      <description>&lt;P&gt;If you can discern the alert in the load script (and in most cases you can) then you can make a call via the REST connector in the load script to send the alert.&lt;/P&gt;&lt;P&gt;Similar is true if you wish to upload a file or send an email on an event occurring in the data.&lt;/P&gt;&lt;P&gt;Say you want to alert if you have a one or more rows where margin is below 50% in the past day you can do this with a RESIDENT load after loading the data table;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tmpMarginAlert:
LOAD
  sum(1) as UnderMargin
RESIDENT DataTable
WHERE Date &amp;gt;= DayStart(today()-1) and Margin &amp;lt; 0.5
;

let iUnderMargin = peek('UnderMargin', -1, 'tmpMarginAlert');

DROP TABLE tmpMarginAlert;

if iUnderMargin &amp;gt; 0 then
   ...&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The syntax of the REST PUT call that you need to make then depends very much on the endpoint that you wish to call and what parameters it is expecting.&lt;/P&gt;&lt;P&gt;I did a blog post on sending data from the Qlik load script which you may find helpful;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.quickintelligence.co.uk/send-data-from-qlik-load-script/" target="_blank"&gt;https://www.quickintelligence.co.uk/send-data-from-qlik-load-script/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This describes sending HTML in the body of an email when a condition is met, sending via a REST connection should be simpler that what is described there.&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jul 2020 23:05:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Can-Qlik-Alerting-send-out-alerts-to-external-REST-API/m-p/1729074#M2030</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2020-07-19T23:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Can Qlik Alerting send out alerts to external REST API?</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Can-Qlik-Alerting-send-out-alerts-to-external-REST-API/m-p/1729087#M2031</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6748"&gt;@stevedark&lt;/a&gt;&amp;nbsp;, I'm aware or the load script option to send out alerts during script exexcution. I was hoping to find this functionality in Qlik Altering, but apparently this will be added in a future release.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 05:21:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Can-Qlik-Alerting-send-out-alerts-to-external-REST-API/m-p/1729087#M2031</guid>
      <dc:creator>ssamuels</dc:creator>
      <dc:date>2020-07-20T05:21:33Z</dc:date>
    </item>
  </channel>
</rss>

