<?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 How to get Talend Management Console task schedules and pause and resume during a maintenance window using the API in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-get-Talend-Management-Console-task-schedules-and-pause/ta-p/2544157</link>
    <description>&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;In the example, we use the following values:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;The Environment ID: &lt;FONT face="courier new,courier"&gt;5b0431e2ee7c2b4082797c73&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Task ID: &lt;FONT face="courier new,courier"&gt;698ba125c327f6c153585c67&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;%TOKEN%&lt;/FONT&gt; is to be replaced by your actual bearer's token&lt;/LI&gt;
&lt;LI&gt;The API URL used in each example is set to the EU region,&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;api.eu.&lt;/STRONG&gt;cloud.talend.com&lt;/FONT&gt;.&amp;nbsp;Update the region accordingly.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The schedule is set from:&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier"&gt;1772628971000&lt;/FONT&gt; to &lt;FONT face="courier new,courier"&gt;1775220971000&lt;/FONT&gt;, which is the 3rd of March 2026 to the 3rd&amp;nbsp;of April 2026 in milliseconds since January 1st 1970. Use &lt;A href="https://www.epochconverter.com/" target="_blank" rel="noopener"&gt;epochconverter.com&lt;/A&gt;&amp;nbsp;to convert date and time to epoch time.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Content&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-TOC indent="15" liststyle="none" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Getting a task schedule&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;First, we get the scheduling of a task.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following Qlik Talend API can be used to retrieve the executions scheduled in a time window using the "from" and "to" parameters:&amp;nbsp;&lt;A href="https://talend.qlik.dev/apis/orchestration/2021-03/#operation_get-scheduled-executions" target="_blank" rel="noopener"&gt;Get scheduled executions&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Get scheduled executions of all types&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;POST /orchestration/executables/events/search&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;curl -v -X POST ^&lt;BR /&gt;-H &amp;nbsp;"Content-Type: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Accept: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Authorization: Bearer %TOKEN%" ^&lt;BR /&gt;-d "{\"environmentId\":\"5b0431e2ee7c2b4082797c73\",\"from\":\"1772628971000\",\"to\":\"1775220971000\"}" ^&lt;BR /&gt;https://api.eu.cloud.talend.com/orchestration/executables/events/search&lt;/PRE&gt;
&lt;P&gt;The API returns a maximum of 100 entries by default. The parameter &lt;EM&gt;"offset"&lt;/EM&gt; can be used to retrieve the next entries.&lt;/P&gt;
&lt;P&gt;Example with &lt;EM&gt;"offset"&lt;/EM&gt;:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;curl -v -X POST ^&lt;BR /&gt;-H &amp;nbsp;"Content-Type: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Accept: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Authorization: Bearer %TOKEN%" ^&lt;BR /&gt;-d "{\"environmentId\":\"5b0431e2ee7c2b4082797c73\",\"from\":\"1772628971000\",\"to\":\"1775220971000\",\"&lt;STRONG&gt;offset&lt;/STRONG&gt;\":100}" ^&lt;BR /&gt;https://api.eu.cloud.talend.com/orchestration/executables/events/search&lt;/PRE&gt;
&lt;P&gt;To retrieve all the entries, increase the &lt;EM&gt;"offset"&lt;/EM&gt; value to the &lt;EM&gt;total&lt;/EM&gt; value returned by the call that is lower than the &lt;EM&gt;limit&lt;/EM&gt;&amp;nbsp;value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Pausing a task&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;Next, we pause the task.&lt;/P&gt;
&lt;P&gt;The following Qlik Talend API can be used to pause a task:&amp;nbsp;&lt;A href="https://talend.qlik.dev/apis/orchestration/2021-03/#operation_pause--resume-a-task" target="_blank" rel="noopener"&gt;Pause / Resume a Task&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Pause / Resume a Task&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;PUT /orchestration/executables/tasks/{taskId}/pause&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;curl -v -X PUT ^&lt;BR /&gt;-H &amp;nbsp;"Content-Type: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Accept: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Authorization: Bearer %TOKEN%" ^&lt;BR /&gt;-d "{\"&lt;STRONG&gt;pause&lt;/STRONG&gt;\":&lt;STRONG&gt;true&lt;/STRONG&gt;,\"pauseContext\":\"Pause during the maintenance window\"}" ^&lt;BR /&gt;&lt;A href="https://api.eu.cloud.talend.com/orchestration/executables/tasks/698ba125c327f6c153585c67/pause" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/orchestration/executables/tasks/698ba125c327f6c153585c67/pause&lt;/A&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resuming a task&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;We now set the task to resume.&lt;/P&gt;
&lt;P&gt;The following Qlik Talend API can be used to resume a task:&amp;nbsp;&lt;A href="https://talend.qlik.dev/apis/orchestration/2021-03/#operation_pause--resume-a-task" target="_blank" rel="noopener"&gt;Pause / Resume a Task&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Pause / Resume a Task&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;PUT /orchestration/executables/tasks/{taskId}/pause&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;curl -v -X PUT ^&lt;BR /&gt;-H &amp;nbsp;"Content-Type: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Authorization: Bearer %TOKEN%" ^&lt;BR /&gt;-d "{\"&lt;STRONG&gt;pause&lt;/STRONG&gt;\":&lt;STRONG&gt;false&lt;/STRONG&gt;}" ^&lt;BR /&gt;&lt;A href="https://api.eu.cloud.talend.com/orchestration/executables/tasks/698d9256c327f6c153585c67/pause" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/orchestration/executables/tasks/&lt;/A&gt;&lt;A href="https://api.eu.cloud.talend.com/orchestration/executables/tasks/698d9256c327f6c153585c67/pause" target="_blank" rel="noopener"&gt;698ba125c327f6c153585c67/pause&lt;/A&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Pausing and resuming a plan&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;To pause and resume a plan, the following Qlik Talend API can be used:&amp;nbsp;&lt;A href="https://talend.qlik.dev/apis/orchestration/2021-03/#operation_pause-resume-plan-executions" target="_blank" rel="noopener"&gt;Pause-Resume Plan executions&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Pause-Resume Plan executions&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;PUT /orchestration/executables/plans/{planId}/pause&lt;/PRE&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;Qlik Talend Cloud&lt;/LI&gt;
&lt;LI&gt;Qlik Talend Management Console&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Wed, 04 Mar 2026 10:18:09 GMT</pubDate>
    <dc:creator>JCLamoure</dc:creator>
    <dc:date>2026-03-04T10:18:09Z</dc:date>
    <item>
      <title>How to get Talend Management Console task schedules and pause and resume during a maintenance window using the API</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-get-Talend-Management-Console-task-schedules-and-pause/ta-p/2544157</link>
      <description>&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;In the example, we use the following values:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;The Environment ID: &lt;FONT face="courier new,courier"&gt;5b0431e2ee7c2b4082797c73&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Task ID: &lt;FONT face="courier new,courier"&gt;698ba125c327f6c153585c67&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;%TOKEN%&lt;/FONT&gt; is to be replaced by your actual bearer's token&lt;/LI&gt;
&lt;LI&gt;The API URL used in each example is set to the EU region,&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;api.eu.&lt;/STRONG&gt;cloud.talend.com&lt;/FONT&gt;.&amp;nbsp;Update the region accordingly.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The schedule is set from:&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier"&gt;1772628971000&lt;/FONT&gt; to &lt;FONT face="courier new,courier"&gt;1775220971000&lt;/FONT&gt;, which is the 3rd of March 2026 to the 3rd&amp;nbsp;of April 2026 in milliseconds since January 1st 1970. Use &lt;A href="https://www.epochconverter.com/" target="_blank" rel="noopener"&gt;epochconverter.com&lt;/A&gt;&amp;nbsp;to convert date and time to epoch time.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Content&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-TOC indent="15" liststyle="none" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Getting a task schedule&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;First, we get the scheduling of a task.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following Qlik Talend API can be used to retrieve the executions scheduled in a time window using the "from" and "to" parameters:&amp;nbsp;&lt;A href="https://talend.qlik.dev/apis/orchestration/2021-03/#operation_get-scheduled-executions" target="_blank" rel="noopener"&gt;Get scheduled executions&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Get scheduled executions of all types&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;POST /orchestration/executables/events/search&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;curl -v -X POST ^&lt;BR /&gt;-H &amp;nbsp;"Content-Type: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Accept: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Authorization: Bearer %TOKEN%" ^&lt;BR /&gt;-d "{\"environmentId\":\"5b0431e2ee7c2b4082797c73\",\"from\":\"1772628971000\",\"to\":\"1775220971000\"}" ^&lt;BR /&gt;https://api.eu.cloud.talend.com/orchestration/executables/events/search&lt;/PRE&gt;
&lt;P&gt;The API returns a maximum of 100 entries by default. The parameter &lt;EM&gt;"offset"&lt;/EM&gt; can be used to retrieve the next entries.&lt;/P&gt;
&lt;P&gt;Example with &lt;EM&gt;"offset"&lt;/EM&gt;:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;curl -v -X POST ^&lt;BR /&gt;-H &amp;nbsp;"Content-Type: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Accept: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Authorization: Bearer %TOKEN%" ^&lt;BR /&gt;-d "{\"environmentId\":\"5b0431e2ee7c2b4082797c73\",\"from\":\"1772628971000\",\"to\":\"1775220971000\",\"&lt;STRONG&gt;offset&lt;/STRONG&gt;\":100}" ^&lt;BR /&gt;https://api.eu.cloud.talend.com/orchestration/executables/events/search&lt;/PRE&gt;
&lt;P&gt;To retrieve all the entries, increase the &lt;EM&gt;"offset"&lt;/EM&gt; value to the &lt;EM&gt;total&lt;/EM&gt; value returned by the call that is lower than the &lt;EM&gt;limit&lt;/EM&gt;&amp;nbsp;value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Pausing a task&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;Next, we pause the task.&lt;/P&gt;
&lt;P&gt;The following Qlik Talend API can be used to pause a task:&amp;nbsp;&lt;A href="https://talend.qlik.dev/apis/orchestration/2021-03/#operation_pause--resume-a-task" target="_blank" rel="noopener"&gt;Pause / Resume a Task&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Pause / Resume a Task&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;PUT /orchestration/executables/tasks/{taskId}/pause&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;curl -v -X PUT ^&lt;BR /&gt;-H &amp;nbsp;"Content-Type: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Accept: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Authorization: Bearer %TOKEN%" ^&lt;BR /&gt;-d "{\"&lt;STRONG&gt;pause&lt;/STRONG&gt;\":&lt;STRONG&gt;true&lt;/STRONG&gt;,\"pauseContext\":\"Pause during the maintenance window\"}" ^&lt;BR /&gt;&lt;A href="https://api.eu.cloud.talend.com/orchestration/executables/tasks/698ba125c327f6c153585c67/pause" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/orchestration/executables/tasks/698ba125c327f6c153585c67/pause&lt;/A&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resuming a task&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;We now set the task to resume.&lt;/P&gt;
&lt;P&gt;The following Qlik Talend API can be used to resume a task:&amp;nbsp;&lt;A href="https://talend.qlik.dev/apis/orchestration/2021-03/#operation_pause--resume-a-task" target="_blank" rel="noopener"&gt;Pause / Resume a Task&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Pause / Resume a Task&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;PUT /orchestration/executables/tasks/{taskId}/pause&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;Example:&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;curl -v -X PUT ^&lt;BR /&gt;-H &amp;nbsp;"Content-Type: application/json" ^&lt;BR /&gt;-H &amp;nbsp;"Authorization: Bearer %TOKEN%" ^&lt;BR /&gt;-d "{\"&lt;STRONG&gt;pause&lt;/STRONG&gt;\":&lt;STRONG&gt;false&lt;/STRONG&gt;}" ^&lt;BR /&gt;&lt;A href="https://api.eu.cloud.talend.com/orchestration/executables/tasks/698d9256c327f6c153585c67/pause" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/orchestration/executables/tasks/&lt;/A&gt;&lt;A href="https://api.eu.cloud.talend.com/orchestration/executables/tasks/698d9256c327f6c153585c67/pause" target="_blank" rel="noopener"&gt;698ba125c327f6c153585c67/pause&lt;/A&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Pausing and resuming a plan&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;To pause and resume a plan, the following Qlik Talend API can be used:&amp;nbsp;&lt;A href="https://talend.qlik.dev/apis/orchestration/2021-03/#operation_pause-resume-plan-executions" target="_blank" rel="noopener"&gt;Pause-Resume Plan executions&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Pause-Resume Plan executions&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;PUT /orchestration/executables/plans/{planId}/pause&lt;/PRE&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;Qlik Talend Cloud&lt;/LI&gt;
&lt;LI&gt;Qlik Talend Management Console&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 04 Mar 2026 10:18:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-get-Talend-Management-Console-task-schedules-and-pause/ta-p/2544157</guid>
      <dc:creator>JCLamoure</dc:creator>
      <dc:date>2026-03-04T10:18:09Z</dc:date>
    </item>
  </channel>
</rss>

