<?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: API - configure trigger in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/API-configure-trigger/m-p/1593796#M10801</link>
    <description>&lt;P&gt;Every 15 minutes:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;{
   "task":null,
   "compositeEventsToDelete":[

   ],
   "schemaEventsToDelete":[

   ],
   "compositeEvents":[

   ],
   "schemaEvents":[
      {
         "name":"Hourly",
         "enabled":true,
         "eventType":0,
         "timeZone":"America/New_York",
         "daylightSavingTime":0,
         "startDate":"2019-06-19T14:21:41.000",
         "expirationDate":"9999-01-01T00:00:00.000",
         "schemaFilterDescription":[
            "* * - * * * * *"
         ],
         "incrementDescription":"15 0 0 0",
         "incrementOption":"1",
         "privileges":[
            "read",
            "update",
            "create",
            "delete"
         ],
         "reloadTask":{
            "id":"ec0dc99b-53bf-42ff-a70e-3b24f8190bf4"
         }
      }
   ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There isn't secret sauce here. Remember you can always:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Go into the QMC&lt;/LI&gt;
&lt;LI&gt;Have Dev Tools Open&lt;/LI&gt;
&lt;LI&gt;Do your action (1)&lt;/LI&gt;
&lt;LI&gt;Navigate to the Network tab (in Chrome, but other browsers have similar functionality) (2)&lt;/LI&gt;
&lt;LI&gt;Filter by XHR for the REST calls (3)&lt;/LI&gt;
&lt;LI&gt;Inspect the body of the call / path / whatever you're interested in (4)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2019-06-19 14_17_43.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/14040iEF6E3A7CAD3E37BB/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-06-19 14_17_43.png" alt="2019-06-19 14_17_43.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jun 2019 18:20:05 GMT</pubDate>
    <dc:creator>Levi_Turner</dc:creator>
    <dc:date>2019-06-19T18:20:05Z</dc:date>
    <item>
      <title>API - configure trigger</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/API-configure-trigger/m-p/1592969#M10785</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a task and a trigger using the API (/qrs/reloadtask/update), but I can't configure it to trigger it at a wish date.&lt;/P&gt;&lt;P&gt;Does somebody help me?&lt;/P&gt;&lt;P&gt;schemaEvents = @(@{&lt;BR /&gt;name = "trigger_test";&lt;BR /&gt;enabled = $true;&lt;BR /&gt;eventType = 0;&lt;BR /&gt;startDate = "$date";&lt;BR /&gt;expirationDate = "9999-12-30T23:59:59.999Z";&lt;BR /&gt;schemaFilterDescription = @("* * - * * * * *");&lt;BR /&gt;incrementDescription = "0 0 1 0";&lt;BR /&gt;incrementOption = "2";&lt;BR /&gt;reloadTask = @{&lt;BR /&gt;id = $id&lt;BR /&gt;}&lt;BR /&gt;})&lt;/P&gt;&lt;P&gt;What should I change to configure a reload every day at 1AM for example?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Fab&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:33:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/API-configure-trigger/m-p/1592969#M10785</guid>
      <dc:creator>fabricecallegari</dc:creator>
      <dc:date>2024-11-16T05:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: API - configure trigger</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/API-configure-trigger/m-p/1593083#M10786</link>
      <description>&lt;P&gt;The easiest way would be to call &lt;CODE&gt;POST&amp;nbsp;/qrs/ReloadTask/update&lt;/CODE&gt;. For example, this body scopes to a daily trigger starting at 1AM / 01:00 in the EST Timezone:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;{
   "task":null,
   "compositeEventsToDelete":[

   ],
   "schemaEventsToDelete":[

   ],
   "compositeEvents":[

   ],
   "schemaEvents":[
      {
         "name":"Daily",
         "enabled":true,
         "eventType":0,
         "timeZone":"America/New_York",
         "daylightSavingTime":0,
         "startDate":"2019-06-18T01:00:51.000",
         "expirationDate":"9999-01-01T00:00:00.000",
         "schemaFilterDescription":[
            "* * - * * * * *"
         ],
         "incrementDescription":"0 0 1 0",
         "incrementOption":"2",
         "privileges":[
            "read",
            "update",
            "create",
            "delete"
         ],
         "reloadTask":{
            "id":"9981ae16-a0fa-466e-a2c2-b8588eafe395"
         }
      }
   ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You would want to adjust the timezone perhaps and certainly the SchemaEvents &amp;gt; reloadTask element to match the GUID of the reload task in your environment.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2019 13:15:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/API-configure-trigger/m-p/1593083#M10786</guid>
      <dc:creator>Levi_Turner</dc:creator>
      <dc:date>2019-06-18T13:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: API - configure trigger</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/API-configure-trigger/m-p/1593413#M10789</link>
      <description>&lt;P&gt;Hello Levi&lt;/P&gt;&lt;P&gt;thank for your answer, but I didn't understand how the planning configuration works.&lt;/P&gt;&lt;P&gt;Can you show another exemple with a loading every 15 minutes for example?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;fab&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 08:15:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/API-configure-trigger/m-p/1593413#M10789</guid>
      <dc:creator>fabricecallegari</dc:creator>
      <dc:date>2019-06-19T08:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: API - configure trigger</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/API-configure-trigger/m-p/1593796#M10801</link>
      <description>&lt;P&gt;Every 15 minutes:&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;{
   "task":null,
   "compositeEventsToDelete":[

   ],
   "schemaEventsToDelete":[

   ],
   "compositeEvents":[

   ],
   "schemaEvents":[
      {
         "name":"Hourly",
         "enabled":true,
         "eventType":0,
         "timeZone":"America/New_York",
         "daylightSavingTime":0,
         "startDate":"2019-06-19T14:21:41.000",
         "expirationDate":"9999-01-01T00:00:00.000",
         "schemaFilterDescription":[
            "* * - * * * * *"
         ],
         "incrementDescription":"15 0 0 0",
         "incrementOption":"1",
         "privileges":[
            "read",
            "update",
            "create",
            "delete"
         ],
         "reloadTask":{
            "id":"ec0dc99b-53bf-42ff-a70e-3b24f8190bf4"
         }
      }
   ]
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There isn't secret sauce here. Remember you can always:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Go into the QMC&lt;/LI&gt;
&lt;LI&gt;Have Dev Tools Open&lt;/LI&gt;
&lt;LI&gt;Do your action (1)&lt;/LI&gt;
&lt;LI&gt;Navigate to the Network tab (in Chrome, but other browsers have similar functionality) (2)&lt;/LI&gt;
&lt;LI&gt;Filter by XHR for the REST calls (3)&lt;/LI&gt;
&lt;LI&gt;Inspect the body of the call / path / whatever you're interested in (4)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2019-06-19 14_17_43.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/14040iEF6E3A7CAD3E37BB/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-06-19 14_17_43.png" alt="2019-06-19 14_17_43.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 18:20:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/API-configure-trigger/m-p/1593796#M10801</guid>
      <dc:creator>Levi_Turner</dc:creator>
      <dc:date>2019-06-19T18:20:05Z</dc:date>
    </item>
  </channel>
</rss>

