<?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 Qlik Talend API: How to get the task whose status is &amp;quot;Misfired&amp;quot;  via API in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Talend-API-How-to-get-the-task-whose-status-is-quot/ta-p/2538760</link>
    <description>&lt;P&gt;To retrieve the task with the status "&lt;STRONG&gt;Misfired&lt;/STRONG&gt;" via API, you can use the API "&lt;SPAN&gt;/monitoring/observability/executions/search&lt;/SPAN&gt;" mentioned below:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://talend.qlik.dev/apis/execution-history-search/2021-03/#type_searchrequest" target="_blank" rel="noopener"&gt;#type_searchrequest | talend.qlik.dev &lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;However, &lt;STRONG&gt;EXECUTION_MISFIRED&lt;/STRONG&gt; status returned only if &lt;FONT color="#000000"&gt;"&lt;STRONG&gt;exclude=TASK_EXECUTIONS_TRIGGERED_BY_PLAN"&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;So if you want to return any plans or tasks that are misfired, you should send this filter request:&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;&amp;nbsp;"filters": [ &amp;nbsp;{ &amp;nbsp;"field": "status", &amp;nbsp;"operator": "in", &amp;nbsp;"value": [ &amp;nbsp;"DEPLOY_FAILED", &amp;nbsp;"EXECUTION_MISFIRED" &amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;URL:&amp;nbsp;&lt;A href="https://api" target="_blank"&gt;https://api&lt;/A&gt;.&amp;lt;region&amp;gt;.cloud.talend.com/monitoring/observability/executions/search&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;{
    "environmentId": "123456......",
    "category": "ETL",
    "filters": [
        {
            "field": "status",
            "operator": "in",
            "value": [
                "DEPLOY_FAILED",
                "EXECUTION_MISFIRED"
            ]
        }
    ],
    "limit": 50,
    "offset": 0,
    "exclude": "TASK_EXECUTIONS_TRIGGERED_BY_PLAN"
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Internal Investigation ID(s)&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/H3&gt;
&lt;P&gt;Jira ID:&amp;nbsp;SUPPORT-7251&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;LI-PRODUCT title="Talend ESB" id="qlik_TalendESB"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;#Talend Cloud API&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Thu, 11 Dec 2025 03:02:58 GMT</pubDate>
    <dc:creator>Jian_Jia</dc:creator>
    <dc:date>2025-12-11T03:02:58Z</dc:date>
    <item>
      <title>Qlik Talend API: How to get the task whose status is "Misfired"  via API</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Talend-API-How-to-get-the-task-whose-status-is-quot/ta-p/2538760</link>
      <description>&lt;P&gt;To retrieve the task with the status "&lt;STRONG&gt;Misfired&lt;/STRONG&gt;" via API, you can use the API "&lt;SPAN&gt;/monitoring/observability/executions/search&lt;/SPAN&gt;" mentioned below:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://talend.qlik.dev/apis/execution-history-search/2021-03/#type_searchrequest" target="_blank" rel="noopener"&gt;#type_searchrequest | talend.qlik.dev &lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;However, &lt;STRONG&gt;EXECUTION_MISFIRED&lt;/STRONG&gt; status returned only if &lt;FONT color="#000000"&gt;"&lt;STRONG&gt;exclude=TASK_EXECUTIONS_TRIGGERED_BY_PLAN"&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;So if you want to return any plans or tasks that are misfired, you should send this filter request:&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;&amp;nbsp;"filters": [ &amp;nbsp;{ &amp;nbsp;"field": "status", &amp;nbsp;"operator": "in", &amp;nbsp;"value": [ &amp;nbsp;"DEPLOY_FAILED", &amp;nbsp;"EXECUTION_MISFIRED" &amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;URL:&amp;nbsp;&lt;A href="https://api" target="_blank"&gt;https://api&lt;/A&gt;.&amp;lt;region&amp;gt;.cloud.talend.com/monitoring/observability/executions/search&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;{
    "environmentId": "123456......",
    "category": "ETL",
    "filters": [
        {
            "field": "status",
            "operator": "in",
            "value": [
                "DEPLOY_FAILED",
                "EXECUTION_MISFIRED"
            ]
        }
    ],
    "limit": 50,
    "offset": 0,
    "exclude": "TASK_EXECUTIONS_TRIGGERED_BY_PLAN"
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Internal Investigation ID(s)&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/H3&gt;
&lt;P&gt;Jira ID:&amp;nbsp;SUPPORT-7251&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;LI-PRODUCT title="Talend ESB" id="qlik_TalendESB"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;#Talend Cloud API&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 11 Dec 2025 03:02:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Talend-API-How-to-get-the-task-whose-status-is-quot/ta-p/2538760</guid>
      <dc:creator>Jian_Jia</dc:creator>
      <dc:date>2025-12-11T03:02:58Z</dc:date>
    </item>
  </channel>
</rss>

