Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: The support homepage carousel is not displaying. We are working toward a resolution.

Qlik Talend API: How to get the task whose status is "Misfired" via API

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
Jian_Jia
Support
Support

Qlik Talend API: How to get the task whose status is "Misfired" via API

Last Update:

Dec 10, 2025 10:00:26 PM

Updated By:

Xiaodi_Shi

Created date:

Dec 10, 2025 10:02:58 PM

To retrieve the task with the status "Misfired" via API, you can use the API "/monitoring/observability/executions/search" mentioned below:

#type_searchrequest | talend.qlik.dev .

However, EXECUTION_MISFIRED status returned only if "exclude=TASK_EXECUTIONS_TRIGGERED_BY_PLAN"

So if you want to return any plans or tasks that are misfired, you should send this filter request:

 "filters": [  {  "field": "status",  "operator": "in",  "value": [  "DEPLOY_FAILED",  "EXECUTION_MISFIRED"  

 

Example

URL: https://api.<region>.cloud.talend.com/monitoring/observability/executions/search

{
    "environmentId": "123456......",
    "category": "ETL",
    "filters": [
        {
            "field": "status",
            "operator": "in",
            "value": [
                "DEPLOY_FAILED",
                "EXECUTION_MISFIRED"
            ]
        }
    ],
    "limit": 50,
    "offset": 0,
    "exclude": "TASK_EXECUTIONS_TRIGGERED_BY_PLAN"
}

 

Internal Investigation ID(s) 

Jira ID: SUPPORT-7251

 

Environment

Labels (2)
Version history
Last update:
yesterday
Updated by: