Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Mar 4, 2026 5:18:09 AM
Mar 4, 2026 4:26:59 AM
This article explains how to obtain a task schedule in the Talend Management Console, how to pause it, and how to resume it. All steps are performed using the API.
In the example, we use the following values:
Content
First, we get the scheduling of a task.
The following Qlik Talend API can be used to retrieve the executions scheduled in a time window using the "from" and "to" parameters: Get scheduled executions
Get scheduled executions of all types
POST /orchestration/executables/events/search
Example:
curl -v -X POST ^
-H "Content-Type: application/json" ^
-H "Accept: application/json" ^
-H "Authorization: Bearer %TOKEN%" ^
-d "{\"environmentId\":\"5b0431e2ee7c2b4082797c73\",\"from\":\"1772628971000\",\"to\":\"1775220971000\"}" ^
https://api.eu.cloud.talend.com/orchestration/executables/events/search
The API returns a maximum of 100 entries by default. The parameter "offset" can be used to retrieve the next entries.
Example with "offset":
curl -v -X POST ^
-H "Content-Type: application/json" ^
-H "Accept: application/json" ^
-H "Authorization: Bearer %TOKEN%" ^
-d "{\"environmentId\":\"5b0431e2ee7c2b4082797c73\",\"from\":\"1772628971000\",\"to\":\"1775220971000\",\"offset\":100}" ^
https://api.eu.cloud.talend.com/orchestration/executables/events/search
To retrieve all the entries, increase the "offset" value to the total value returned by the call that is lower than the limit value.
Next, we pause the task.
The following Qlik Talend API can be used to pause a task: Pause / Resume a Task
Pause / Resume a Task
PUT /orchestration/executables/tasks/{taskId}/pause
Example:
curl -v -X PUT ^
-H "Content-Type: application/json" ^
-H "Accept: application/json" ^
-H "Authorization: Bearer %TOKEN%" ^
-d "{\"pause\":true,\"pauseContext\":\"Pause during the maintenance window\"}" ^
https://api.eu.cloud.talend.com/orchestration/executables/tasks/698ba125c327f6c153585c67/pause
We now set the task to resume.
The following Qlik Talend API can be used to resume a task: Pause / Resume a Task
Pause / Resume a Task
PUT /orchestration/executables/tasks/{taskId}/pause
Example:
curl -v -X PUT ^
-H "Content-Type: application/json" ^
-H "Authorization: Bearer %TOKEN%" ^
-d "{\"pause\":false}" ^
https://api.eu.cloud.talend.com/orchestration/executables/tasks/698ba125c327f6c153585c67/pause
To pause and resume a plan, the following Qlik Talend API can be used: Pause-Resume Plan executions
Pause-Resume Plan executions
PUT /orchestration/executables/plans/{planId}/pause