<?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 How to trigger tasks using the QRS API based on tags in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/1126#M24</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have a multi-tenanted environment and need to start customer tasks on a daily basis. By way of an example, we have 33 customers that each have their own reload task. The data is extracted from a customer's onsite source on a daily basis and loaded into a multi-tenanted Data Warehouse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Qlik Sense tasks run based on a daily schedule at 8 am each morning, this is not ideal as the Qlik Sense tasks do not know when the Data Warehouse has finished loading. Ideally, I would like to trigger each task via the QRS API once the DWH has completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each customer reload task has been a tagged with the source system the data relates to, for example, the 33 customers have a tag of "HPOS" against each reload task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to be able to use the QRS API to do two things:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Filter a list of reload tasks based on a tag, in the above example "HPOS".&lt;/P&gt;&lt;P&gt;2. Start the reload tasks based on the filtered list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions are welcome.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Jan 2018 22:02:15 GMT</pubDate>
    <dc:creator>pschmidt1973</dc:creator>
    <dc:date>2018-01-15T22:02:15Z</dc:date>
    <item>
      <title>How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/1126#M24</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have a multi-tenanted environment and need to start customer tasks on a daily basis. By way of an example, we have 33 customers that each have their own reload task. The data is extracted from a customer's onsite source on a daily basis and loaded into a multi-tenanted Data Warehouse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Qlik Sense tasks run based on a daily schedule at 8 am each morning, this is not ideal as the Qlik Sense tasks do not know when the Data Warehouse has finished loading. Ideally, I would like to trigger each task via the QRS API once the DWH has completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each customer reload task has been a tagged with the source system the data relates to, for example, the 33 customers have a tag of "HPOS" against each reload task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to be able to use the QRS API to do two things:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Filter a list of reload tasks based on a tag, in the above example "HPOS".&lt;/P&gt;&lt;P&gt;2. Start the reload tasks based on the filtered list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions are welcome.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jan 2018 22:02:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/1126#M24</guid>
      <dc:creator>pschmidt1973</dc:creator>
      <dc:date>2018-01-15T22:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/1127#M25</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest that you explore the Qlik CLI (&lt;A href="https://github.com/ahaydon/Qlik-Cli" title="https://github.com/ahaydon/Qlik-Cli"&gt;GitHub - ahaydon/Qlik-Cli: Qlik Sense Cmdlet for PowerShell&lt;/A&gt;) which allows you to utilize the Qlik Sense Repository Service (QRS) APIs through PowerShell. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Get-QlikTask -full&lt;/SPAN&gt; returns a list of all tasks, including the tag values.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Get-QlikTask -full | where {$_.tags.name -eq "HPOS"})&lt;/SPAN&gt; pipes the task list into a filter, to only keep the required tags. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;(Get-QlikTask -full | where {$_.tags.name -eq "&lt;SPAN style="font-family: 'courier new', courier; font-size: 13.3333px;"&gt;HPOS&lt;/SPAN&gt;"}).id&lt;/SPAN&gt; limits the filtered task list to only the task ID values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;(Get-QlikTask -full | where {$_.tags.name -eq "&lt;SPAN style="font-family: 'courier new', courier; font-size: 13.3333px;"&gt;HPOS&lt;/SPAN&gt;"}).id | foreach { Start-QlikTask $_ }&lt;/SPAN&gt; as a final step pipes each filtered task ID to being started. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Jan 2018 02:18:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/1127#M25</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2018-01-28T02:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092046#M18803</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it possible to filter the list of reload tasks based on a specific pattern on the name ? Let's say, the tasks that the name contains a specific caracteres exmpl : Names contains "test" ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, please let me know how to implement such a thing ..&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2023 10:59:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092046#M18803</guid>
      <dc:creator>k21</dc:creator>
      <dc:date>2023-07-10T10:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092052#M18804</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/237693"&gt;@k21&lt;/a&gt;&amp;nbsp; have a look at the&amp;nbsp;&lt;STRONG&gt;Relational operators&amp;nbsp;&lt;/STRONG&gt;section at the &lt;A href="https://help.qlik.com/en-US/sense-developer/May2023/Subsystems/RepositoryServiceAPI/Content/Sense_RepositoryServiceAPI/RepositoryServiceAPI-Filtering.htm" target="_self"&gt;documentation page&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In your case you can filter the tasks by using:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;name -so "test"&lt;/LI-CODE&gt;
&lt;P&gt;this will filter all entities that are having&amp;nbsp;&lt;STRONG&gt;test&lt;/STRONG&gt; in their name&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="stefanstoichev123_0-1688987112071.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/111892i31D11516D92703A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="stefanstoichev123_0-1688987112071.png" alt="stefanstoichev123_0-1688987112071.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Stefan&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2023 11:09:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092052#M18804</guid>
      <dc:creator>stefanstoichev123</dc:creator>
      <dc:date>2023-07-10T11:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092154#M18808</link>
      <description>&lt;P&gt;Okay, thanks for ur quick reply,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and is it possible to extract the id of this task, using qlik qrs options ? I was testing this:&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;/home/jenkins/.local/bin/qlik qrs reloadtask ls --filter "name so '&lt;/SPAN&gt;&lt;SPAN&gt;$TaskNameDependency&lt;/SPAN&gt;&lt;SPAN&gt;'" &lt;/SPAN&gt;&lt;SPAN&gt;|&lt;/SPAN&gt;&lt;SPAN&gt; jq -r '.[] | {id:.id}| .id'&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;But it is not working .. I am not sure what's the issue;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 Jul 2023 14:33:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092154#M18808</guid>
      <dc:creator>k21</dc:creator>
      <dc:date>2023-07-10T14:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092160#M18809</link>
      <description>&lt;P&gt;Probably check the content of the TaskNameDependency variable? or the context is wrong and such tasks do not exists on the cluster you are quering?&lt;/P&gt;
&lt;P&gt;The same command returns the task ids for me.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="stefanstoichev123_0-1688999954811.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/111920i377225B2D0E60963/image-size/medium?v=v2&amp;amp;px=400" role="button" title="stefanstoichev123_0-1688999954811.png" alt="stefanstoichev123_0-1688999954811.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stefan&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2023 14:39:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092160#M18809</guid>
      <dc:creator>stefanstoichev123</dc:creator>
      <dc:date>2023-07-10T14:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092205#M18813</link>
      <description>&lt;P&gt;Finally it is working, Thanks a lottttttttttt!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I still have one qst;&lt;/P&gt;
&lt;P&gt;I m creating a task_2 that depends from other task_1 but task_2 is being created but it does not include the trigger in qlik UI, how to fix this, any ideas plz ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2023 17:05:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092205#M18813</guid>
      <dc:creator>k21</dc:creator>
      <dc:date>2023-07-10T17:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092220#M18815</link>
      <description>&lt;P&gt;Possible to share some code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stefan&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2023 17:35:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2092220#M18815</guid>
      <dc:creator>stefanstoichev123</dc:creator>
      <dc:date>2023-07-10T17:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2093015#M18835</link>
      <description>&lt;P&gt;Sorry for the late response, It takes me a bit of time to figure this out ..&amp;nbsp; I think i am able now to create tasks that depend from other tasks .. I created a composite rule :&amp;nbsp;&lt;/P&gt;
&lt;PRE class="code highlight" lang="shell"&gt;&lt;SPAN class="line"&gt;    &lt;SPAN class="nv"&gt;compositeRule&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="k"&gt;${&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;compositeRule&lt;/SPAN&gt;::-1&lt;SPAN class="k"&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="line"&gt;    &lt;SPAN class="nv"&gt;compositeEvent&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'{"timeConstraint":{"days":0,"hours":0,"minutes":360,"seconds":0},"compositeRules":['&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$compositeRule&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'],"name":"EventTrig","enabled":true,"eventType":1}'&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;and then I am using a post curl api to create the task with this compositeRule ..&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE class="code highlight" lang="shell"&gt;&lt;SPAN class="line"&gt;curl &lt;SPAN class="nt"&gt;-X&lt;/SPAN&gt; POST &lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$serverUrl&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;/create?xrfkey=$id"&lt;/SPAN&gt; &lt;SPAN class="se"&gt;\&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="line"&gt;                    &lt;SPAN class="nt"&gt;-H&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;"x-qlik-xrfkey: $id"&lt;/SPAN&gt; &lt;SPAN class="se"&gt;\&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="line"&gt;                    &lt;SPAN class="nt"&gt;-H&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;"Content-type: application/json"&lt;/SPAN&gt; &lt;SPAN class="se"&gt;\&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="line"&gt;                    &lt;SPAN class="nt"&gt;-H&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;"Authorization: Bearer &lt;/SPAN&gt;&lt;SPAN class="k"&gt;${&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;token&lt;/SPAN&gt;&lt;SPAN class="k"&gt;}&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt; &lt;SPAN class="se"&gt;\&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="line"&gt;                    &lt;SPAN class="nt"&gt;-d&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;'{"task": { "app":  { "id":  "'&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$idapplication&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'" }, "enabled": true , "schemaPath": "ReloadTask" ,  "name": "'&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$TaskName&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'"}, "compositeEvents": ['&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$compositeEvent&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'] }'&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Now I am struggling to create a compositeRule for a Daily and weekly tasks .. I think I should be able to create a curl post command with a different composite,&amp;nbsp; but i am not able to define the compositeRule for daily or weekly&amp;nbsp; tasks&amp;nbsp; .. I hope it is clear&amp;nbsp; ..&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is my curl post:&amp;nbsp;&lt;/P&gt;
&lt;PRE class="code highlight" lang="shell"&gt;&lt;SPAN class="line"&gt;             &lt;SPAN class="nv"&gt;response&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="si"&gt;$(&lt;/SPAN&gt; curl &lt;SPAN class="nt"&gt;-X&lt;/SPAN&gt; POST &lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$serverUrl&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;/create?xrfkey=$id"&lt;/SPAN&gt; &lt;SPAN class="se"&gt;\&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="line"&gt;                    &lt;SPAN class="nt"&gt;-H&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;"x-qlik-xrfkey: $id"&lt;/SPAN&gt; &lt;SPAN class="se"&gt;\&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="line"&gt;                    &lt;SPAN class="nt"&gt;-H&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;"Content-type: application/json"&lt;/SPAN&gt; &lt;SPAN class="se"&gt;\&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="line"&gt;                    &lt;SPAN class="nt"&gt;-H&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;"Authorization: Bearer &lt;/SPAN&gt;&lt;SPAN class="k"&gt;${&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;token&lt;/SPAN&gt;&lt;SPAN class="k"&gt;}&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt; &lt;SPAN class="se"&gt;\ &lt;BR /&gt;&lt;SPAN class="nt"&gt;                    -d&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;'{"task": { "app": { "id": "'&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$idapplication&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'" }, "enabled": true , "schemaPath": "ReloadTask" , "name": "'&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$TaskName&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'" }, "schemaEvents":[{ "name": "'&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$TaskFrequence&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'" ,"enabled":true, "eventType":0, "timeZone":"Europe/Paris","daylightSavingTime":0,"startDate": "'&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$startDate&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'","expirationDate":"9999-01-01T00:00:00.000", "schemaFilterDescription": ["'&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$schemaFilterDescription&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'"] , "incrementDescription": "'&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$incrementDescription&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;"&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'" , "incrementOption": "'&lt;/SPAN&gt;&lt;SPAN class="nv"&gt;$incrementOption&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;'"}] }'&lt;/SPAN&gt; &lt;SPAN class="si"&gt;)&lt;/SPAN&gt; &amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 10:07:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2093015#M18835</guid>
      <dc:creator>k21</dc:creator>
      <dc:date>2023-07-12T10:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger tasks using the QRS API based on tags</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2093093#M18839</link>
      <description>&lt;P&gt;I think I know what's the error, apprently it is related to my config, can anyone please check this for me ?&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; [ &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;$TaskFrequence&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; &lt;SPAN&gt;==&lt;/SPAN&gt; &lt;SPAN&gt;"Daily"&lt;/SPAN&gt;&lt;SPAN&gt; ]; &lt;/SPAN&gt;&lt;SPAN&gt;then&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; schemaFilterDescription=&lt;/SPAN&gt;&lt;SPAN&gt;"* * - * * * * *"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; incrementDescription=&lt;/SPAN&gt;&lt;SPAN&gt;"0 0 1 0"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; incrementOption=&lt;/SPAN&gt;&lt;SPAN&gt;"2"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;elif&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp;[ &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;$TaskFrequence&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; &lt;SPAN&gt;==&lt;/SPAN&gt; &lt;SPAN&gt;"Weekly"&lt;/SPAN&gt;&lt;SPAN&gt; ]; &lt;/SPAN&gt;&lt;SPAN&gt;then&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; schemaFilterDescription=&lt;/SPAN&gt;&lt;SPAN&gt;"* * - &lt;/SPAN&gt;&lt;SPAN&gt;$WeekDay&lt;/SPAN&gt;&lt;SPAN&gt; 1 * * *"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; incrementDescription=&lt;/SPAN&gt;&lt;SPAN&gt;"0 0 1 0"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; incrementOption=&lt;/SPAN&gt;&lt;SPAN&gt;"3"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;elif&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp;[ &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;$TaskFrequence&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; &lt;SPAN&gt;==&lt;/SPAN&gt; &lt;SPAN&gt;"Monthly"&lt;/SPAN&gt;&lt;SPAN&gt; ]; &lt;/SPAN&gt;&lt;SPAN&gt;then&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; schemaFilterDescription=&lt;/SPAN&gt;&lt;SPAN&gt;"* * - * * &lt;/SPAN&gt;&lt;SPAN&gt;$DayOfMonth&lt;/SPAN&gt;&lt;SPAN&gt; * *"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; incrementDescription=&lt;/SPAN&gt;&lt;SPAN&gt;"0 0 1 0"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; incrementOption=&lt;/SPAN&gt;&lt;SPAN&gt;"4"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 12 Jul 2023 12:39:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-trigger-tasks-using-the-QRS-API-based-on-tags/m-p/2093093#M18839</guid>
      <dc:creator>k21</dc:creator>
      <dc:date>2023-07-12T12:39:56Z</dc:date>
    </item>
  </channel>
</rss>

