<?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 Using the Talend Cloud Management Console Public API in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/ta-p/2151875</link>
    <description>&lt;P&gt;The Talend Cloud Management Console Public API enables users to manage Talend Management Console (TMC) from an external system (for example, a scheduler, script, or program).&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;This article uses Talend Cloud API 1.2, which supports operations for tasks, plans, and promotions in Talend Cloud.&amp;nbsp;&lt;STRONG&gt;Note&lt;/STRONG&gt;: Talend Cloud API 1.1 only supports operations on tasks, and version 1.0 has been deprecated.&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="4"&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;Prerequisites&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Talend Cloud subscription&lt;/LI&gt;
&lt;LI&gt;Talend Cloud Management Console access credentials (can also be used to access API)&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Executables and executions&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;A list of supported operations is available on the API documentation page. There are three URLs, each for a different region of Talend Cloud. However, the list of operations does not vary by region.&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;
&lt;P&gt;US: &lt;A href="https://api.us.cloud.talend.com/tmc/" target="_blank" rel="noopener"&gt;https://api.us.cloud.talend.com/tmc/&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;EU: &lt;A href="https://api.eu.cloud.talend.com/tmc/" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;APAC: &lt;A href="https://api.ap.cloud.talend.com/tmc/" target="_blank" rel="noopener"&gt;https://api.ap.cloud.talend.com/tmc/&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The API operations consist of executables and executions, with a separate set of operations available for each.&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Operations related to executables use the GET method to get information about executables, such as tasks, plans, and promotions.&lt;/LI&gt;
&lt;LI&gt;Operations related to executions perform actions such as &lt;STRONG&gt;execute&lt;/STRONG&gt; or &lt;STRONG&gt;terminate&lt;/STRONG&gt; using the POST, DELETE, or GET method.&lt;/LI&gt;
&lt;LI&gt;Supported operations on executables get lists of tasks, plans, or promotions, as well as details for these by ID, for instance, using "Get task details by task ID".&lt;/LI&gt;
&lt;LI&gt;The POST method is used for an operation that supports execution of a task, plan, or promotion.&lt;/LI&gt;
&lt;LI&gt;The DELETE method is used for deleting a task.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Generating a token&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;The first step in using the API is generating a personal access token; then you can start managing TMC through the API. Follow the detailed steps for &lt;A href="https://help.talend.com/reader/6SB6Qfc014RWM4mEltupHA/DprJF0w6lofxRsZVFQuCWQ" target="_blank" rel="noopener"&gt;Generating a personal access token&lt;/A&gt; in the Talend Help Center. You get a token that looks like this:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNStAAM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121930i0E21BA2C9CF1527B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNStAAM.png" alt="0693p000008uNStAAM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;As mentioned in the help, you can use this token for authorization, for example in a curl command:&lt;/P&gt;
&lt;PRE&gt;curl -X GET '&lt;A href="https://api.us.cloud.talend.com/tmc/v1.2/executables" target="_blank" rel="noopener"&gt;https://api.us.cloud.talend.com/tmc/v1.2/executables&lt;/A&gt;' \
-H 'Authorization: Bearer eyJraWQiOiJpYW0tb2lpYy1jbG91ZCIsImQu2WembcCB'&lt;/PRE&gt;
&lt;P&gt;This article references the Swagger UI available as part of API documentation authorization; it uses email and password login credentials instead of a token.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;API operations for tasks in Talend Cloud&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;Here are the operations available for accessing a task or its details, and for managing task execution:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlBAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121744iA8801AD61FC05830/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlBAAU.png" alt="0693p000008uNlBAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are details on how to perform each operation with different scenarios:&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get available Tasks - /executables&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;&lt;STRONG&gt;/executables&lt;/STRONG&gt; lists available tasks in all environments using the GET method.&lt;/P&gt;
&lt;P&gt;The HTTPS URL for this operation is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;To try this in the Swagger UI:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Click the name of the operation to expand it.&lt;/LI&gt;
&lt;LI&gt;Click the &lt;STRONG&gt;Try it out!&lt;/STRONG&gt; button.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Notice that &lt;STRONG&gt;/executables&lt;/STRONG&gt; is highlighted in the &lt;STRONG&gt;Curl&lt;/STRONG&gt; and &lt;STRONG&gt;Request URL&lt;/STRONG&gt; sections:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlGAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122922i298652B511904014/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlGAAU.png" alt="0693p000008uNlGAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The &lt;STRONG&gt;Response Body&lt;/STRONG&gt; section lists all tasks in all environments of the Talend Cloud subscription. In this operation, a &lt;STRONG&gt;Response Code&lt;/STRONG&gt; of 200 indicates that the API call is successful.&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get Task details - /executables/{id}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To get task details by task ID instead of getting all tasks, you use the &lt;STRONG&gt;/executables/{id}&lt;/STRONG&gt; operation. The HTTPS URL for this operation is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executables/5c275067e91341357ef0b86b" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/5c275067e91341357ef0b86b&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNSuAAM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124369i3DB4A3517E610B92/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNSuAAM.png" alt="0693p000008uNSuAAM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Execute Task - /executions&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To execute a task, use &lt;STRONG&gt;/executions&lt;/STRONG&gt; and specify the execution ID. In the example below, the parameter required for execution is the executable ID. In this case, the task is executable. Specify the parameter in JSON format. The response is the execution ID.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNgMAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124873iBF6D11984F33167C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNgMAAU.png" alt="0693p000008uNgMAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;You can verify the execution logs in TMC by opening the task and viewing the run history. The execution ID returned as part of &lt;STRONG&gt;Response Body&lt;/STRONG&gt; is used to find the execution. The screenshot shows the log for the sample task execution:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNf4AAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124729i04E1C4A5170A59AE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNf4AAE.png" alt="0693p000008uNf4AAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Terminate Task execution - /executions/{id}&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;To terminate a task in execution, use &lt;STRONG&gt;/executions/{id}&lt;/STRONG&gt; called using the DELETE method. For example, in the Swagger UI as below, using the &lt;STRONG&gt;f88b8a8f-4a51-4ac5-9453-2c8eaf1e01a4&lt;/STRONG&gt; execution ID returned as part of a previous request (in the &lt;STRONG&gt;Execute Task&lt;/STRONG&gt; example) terminates task execution. Because task execution in the previous API call was successful, the response returned for this terminate operation is &lt;STRONG&gt;Nothing to do for the task: its status is EXECUTION_SUCCESS&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNZLAA2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122156i174C5C27AD4D1651/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNZLAA2.png" alt="0693p000008uNZLAA2.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;In a real-world scenario, the terminate task would help stop execution of any long-running task.&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Get Task execution status - /executions/{id}&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Before terminating a task, calling &lt;STRONG&gt;/executions/{id}&lt;/STRONG&gt; using the GET method returns the status of the task. This operation of getting the execution status by ID tells you whether the task is in progress, has been completed, or has failed. In the screenshot below, for the &lt;STRONG&gt;f88b8a8f-4a51-4ac5-9453-2c8eaf1e01a4&lt;/STRONG&gt; sample execution ID, notice the detailed status returned by the operation as part of &lt;STRONG&gt;Response Body&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNekAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123016iF25E056B494FC23A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNekAAE.png" alt="0693p000008uNekAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;API operations for plans in Talend Cloud&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlaAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122621iF3A02D9C5070134F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlaAAE.png" alt="0693p000008uNlaAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Get available Plans - /executables/plans&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Like tasks, the cloud API allows you to manage plans externally. A plan is the step-by-step execution of one or more tasks. To list all plans created in all environments, the request URL, submitted using the GET method, is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/plans&lt;/A&gt;. &lt;STRONG&gt;Response Body&lt;/STRONG&gt; lists plans in JSON format:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlfAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121737i5A59E3059987F1CC/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlfAAE.png" alt="0693p000008uNlfAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get Plan details - /executables/plans/{id}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To get details on a particular plan using the executable ID, the request URL, submitted using a GET method, is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/plans/{id}&lt;/A&gt;. In this example, the executable ID is &lt;STRONG&gt;49fe0c6d-95e8-413c-aa97-13a15e506350&lt;/STRONG&gt;, so the request URL is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executables/plans/49fe0c6d-95e8-413c-aa97-13a15e506350’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/plans/49fe0c6d-95e8-413c-aa97-13a15e506350&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;The response for this operation consists of detailed plan information in JSON format:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlkAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124393iF97570FF8CFFBC36/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlkAAE.png" alt="0693p000008uNlkAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Execute Plan - /executions/plans&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To execute a plan from an external system, the request URL format is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans&lt;/A&gt;. This URL is submitted using the POST method. The parameter required for this operation consists of an executable ID in JSON format:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlpAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123373i8B57F46D84585E8B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlpAAE.png" alt="0693p000008uNlpAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Just as with a task execution using the POST method, a plan execution returns an execution ID as the response. A plan execution generates logs for every task in the steps in the plan:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlzAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121859i9C134211B5241A65/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlzAAE.png" alt="0693p000008uNlzAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get Plan execution status - /executions/plans/{id}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To get the execution status of a plan, the request URL format is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans/{id" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans/{id&lt;/A&gt;}. For this example, the request URL is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans/67975122-8e92-4b81-8818-6ce161763ece’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans/67975122-8e92-4b81-8818-6ce161763ece&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Response Body&lt;/STRONG&gt; contains detailed information about the plan execution:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNd8AAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122310i0D68B9A3BA8FB071/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNd8AAE.png" alt="0693p000008uNd8AAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;API operations for promotions in Talend Cloud&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNNjAAM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123851i25EA892F8C4526A6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNNjAAM.png" alt="0693p000008uNNjAAM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Get available Promotions - /executables/promotions&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;To get a list of all promotions, the request URL is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/promotions&lt;/A&gt;. Whether it is a list of promotions, tasks, or plans, the API call returns the response based on the credentials or token permissions (based on user access). This screenshot shows the sample &lt;STRONG&gt;get available promotions&lt;/STRONG&gt; operation:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNiwAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121850iAAEBF7AA09AC7A08/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNiwAAE.png" alt="0693p000008uNiwAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;Get Promotion details - /executables/promotions/{id}&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;You can get the details of a promotion from the executable ID. Notice the highlighted &lt;STRONG&gt;Request URL&lt;/STRONG&gt; and &lt;STRONG&gt;Response Body&lt;/STRONG&gt; sections:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmOAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121873i8FC5EDB85BBF1165/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmOAAU.png" alt="0693p000008uNmOAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Execute Promotion - /executions/promotions&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;For the &lt;STRONG&gt;execute promotion&lt;/STRONG&gt; operation, the request URL is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions&lt;/A&gt;, called using a POST method that requires a JSON parameter:&lt;/P&gt;
&lt;PRE&gt;{
 "executable": "5ce39250b0daaa43cfc64271",
 "keepTargetResources": true,
 "advanced": {
   "artifactId": "5d5bc62796184c43f45d310e",
   "&lt;STRONG&gt;artifactType&lt;/STRONG&gt;": "&lt;STRONG&gt;ACTION&lt;/STRONG&gt;"
 }
}&lt;/PRE&gt;
&lt;P&gt;The value for &lt;STRONG&gt;artifactType&lt;/STRONG&gt; in the JSON parameter determines the scope of the promotion. Refer to &lt;A href="https://help.talend.com/reader/6SB6Qfc014RWM4mEltupHA/KsAq_ce9J_RY1Fh~tLU1fA" target="_blank" rel="noopener"&gt;Managing promotions&lt;/A&gt; in the Talend Help Center for details about promoting artifacts, tasks, plans, workspaces, and environments.&lt;/P&gt;
&lt;P&gt;The &lt;STRONG&gt;ACTION&lt;/STRONG&gt; value promotes an artifact.&lt;/P&gt;
&lt;P&gt;You are ready to explore the &lt;STRONG&gt;execute promotion&lt;/STRONG&gt; operation in more detail. For the promotion in this article, the source environment is &lt;STRONG&gt;Vpdev&lt;/STRONG&gt; and the target environment is &lt;STRONG&gt;VPProd&lt;/STRONG&gt;. An artifact is promoted using artifact ID &lt;STRONG&gt;5d5bc62796184c43f45d310e&lt;/STRONG&gt; in the &lt;STRONG&gt;VPdev&lt;/STRONG&gt; environment:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmYAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123332i4780575462F25039/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmYAAU.png" alt="0693p000008uNmYAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The target environment does not have this artifact before executing the promotion:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNSeAAM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122744i4F46B86623713BF7/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNSeAAM.png" alt="0693p000008uNSeAAM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;When you execute the promotion, &lt;STRONG&gt;Response Body&lt;/STRONG&gt; for the &lt;STRONG&gt;execute promotion&lt;/STRONG&gt; operation contains the execution ID:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmiAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124361i3FE8A9BA4827814D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmiAAE.png" alt="0693p000008uNmiAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The artifact has been promoted:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmnAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121578i88763BDDC9BC8BCA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmnAAE.png" alt="0693p000008uNmnAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get Promotion execution status - /executions/promotions/{id}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;Using the execution ID returned as the response with the previous &lt;STRONG&gt;execute promotion&lt;/STRONG&gt; operation, you can obtain the execution status of another operation, &lt;STRONG&gt;Get Promotion execution status&lt;/STRONG&gt;. The request URL format is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions/{id}’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions/{id}&lt;/A&gt;. For example, the URL for the execution ID in the previous operation is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions/5d5c0223780a65440e3fed53" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions/5d5c0223780a65440e3fed53&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmxAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124033i18A37DED0C6D91D3/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmxAAE.png" alt="0693p000008uNmxAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Conclusion&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;You have learned how to use the Talend Cloud Management Console Public API to manage tasks, plans, and promotions from an external system. You can use either a personal access token or Talend Cloud access credentials. The best practice is to use a personal access token to manage Talend Cloud tasks, plans, and promotions. Performing a combination of operations through the API is ideal for most use cases that require external management.&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jan 2024 02:35:30 GMT</pubDate>
    <dc:creator>TalendSolutionExpert</dc:creator>
    <dc:date>2024-01-23T02:35:30Z</dc:date>
    <item>
      <title>Using the Talend Cloud Management Console Public API</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/ta-p/2151875</link>
      <description>&lt;P&gt;The Talend Cloud Management Console Public API enables users to manage Talend Management Console (TMC) from an external system (for example, a scheduler, script, or program).&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;This article uses Talend Cloud API 1.2, which supports operations for tasks, plans, and promotions in Talend Cloud.&amp;nbsp;&lt;STRONG&gt;Note&lt;/STRONG&gt;: Talend Cloud API 1.1 only supports operations on tasks, and version 1.0 has been deprecated.&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="4"&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;Prerequisites&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Talend Cloud subscription&lt;/LI&gt;
&lt;LI&gt;Talend Cloud Management Console access credentials (can also be used to access API)&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Executables and executions&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;A list of supported operations is available on the API documentation page. There are three URLs, each for a different region of Talend Cloud. However, the list of operations does not vary by region.&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;
&lt;P&gt;US: &lt;A href="https://api.us.cloud.talend.com/tmc/" target="_blank" rel="noopener"&gt;https://api.us.cloud.talend.com/tmc/&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;EU: &lt;A href="https://api.eu.cloud.talend.com/tmc/" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;APAC: &lt;A href="https://api.ap.cloud.talend.com/tmc/" target="_blank" rel="noopener"&gt;https://api.ap.cloud.talend.com/tmc/&lt;/A&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The API operations consist of executables and executions, with a separate set of operations available for each.&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Operations related to executables use the GET method to get information about executables, such as tasks, plans, and promotions.&lt;/LI&gt;
&lt;LI&gt;Operations related to executions perform actions such as &lt;STRONG&gt;execute&lt;/STRONG&gt; or &lt;STRONG&gt;terminate&lt;/STRONG&gt; using the POST, DELETE, or GET method.&lt;/LI&gt;
&lt;LI&gt;Supported operations on executables get lists of tasks, plans, or promotions, as well as details for these by ID, for instance, using "Get task details by task ID".&lt;/LI&gt;
&lt;LI&gt;The POST method is used for an operation that supports execution of a task, plan, or promotion.&lt;/LI&gt;
&lt;LI&gt;The DELETE method is used for deleting a task.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Generating a token&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;The first step in using the API is generating a personal access token; then you can start managing TMC through the API. Follow the detailed steps for &lt;A href="https://help.talend.com/reader/6SB6Qfc014RWM4mEltupHA/DprJF0w6lofxRsZVFQuCWQ" target="_blank" rel="noopener"&gt;Generating a personal access token&lt;/A&gt; in the Talend Help Center. You get a token that looks like this:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNStAAM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121930i0E21BA2C9CF1527B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNStAAM.png" alt="0693p000008uNStAAM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;As mentioned in the help, you can use this token for authorization, for example in a curl command:&lt;/P&gt;
&lt;PRE&gt;curl -X GET '&lt;A href="https://api.us.cloud.talend.com/tmc/v1.2/executables" target="_blank" rel="noopener"&gt;https://api.us.cloud.talend.com/tmc/v1.2/executables&lt;/A&gt;' \
-H 'Authorization: Bearer eyJraWQiOiJpYW0tb2lpYy1jbG91ZCIsImQu2WembcCB'&lt;/PRE&gt;
&lt;P&gt;This article references the Swagger UI available as part of API documentation authorization; it uses email and password login credentials instead of a token.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;API operations for tasks in Talend Cloud&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;Here are the operations available for accessing a task or its details, and for managing task execution:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlBAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121744iA8801AD61FC05830/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlBAAU.png" alt="0693p000008uNlBAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are details on how to perform each operation with different scenarios:&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get available Tasks - /executables&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;&lt;STRONG&gt;/executables&lt;/STRONG&gt; lists available tasks in all environments using the GET method.&lt;/P&gt;
&lt;P&gt;The HTTPS URL for this operation is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;To try this in the Swagger UI:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Click the name of the operation to expand it.&lt;/LI&gt;
&lt;LI&gt;Click the &lt;STRONG&gt;Try it out!&lt;/STRONG&gt; button.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Notice that &lt;STRONG&gt;/executables&lt;/STRONG&gt; is highlighted in the &lt;STRONG&gt;Curl&lt;/STRONG&gt; and &lt;STRONG&gt;Request URL&lt;/STRONG&gt; sections:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlGAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122922i298652B511904014/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlGAAU.png" alt="0693p000008uNlGAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The &lt;STRONG&gt;Response Body&lt;/STRONG&gt; section lists all tasks in all environments of the Talend Cloud subscription. In this operation, a &lt;STRONG&gt;Response Code&lt;/STRONG&gt; of 200 indicates that the API call is successful.&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get Task details - /executables/{id}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To get task details by task ID instead of getting all tasks, you use the &lt;STRONG&gt;/executables/{id}&lt;/STRONG&gt; operation. The HTTPS URL for this operation is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executables/5c275067e91341357ef0b86b" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/5c275067e91341357ef0b86b&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNSuAAM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124369i3DB4A3517E610B92/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNSuAAM.png" alt="0693p000008uNSuAAM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Execute Task - /executions&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To execute a task, use &lt;STRONG&gt;/executions&lt;/STRONG&gt; and specify the execution ID. In the example below, the parameter required for execution is the executable ID. In this case, the task is executable. Specify the parameter in JSON format. The response is the execution ID.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNgMAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124873iBF6D11984F33167C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNgMAAU.png" alt="0693p000008uNgMAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;You can verify the execution logs in TMC by opening the task and viewing the run history. The execution ID returned as part of &lt;STRONG&gt;Response Body&lt;/STRONG&gt; is used to find the execution. The screenshot shows the log for the sample task execution:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNf4AAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124729i04E1C4A5170A59AE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNf4AAE.png" alt="0693p000008uNf4AAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Terminate Task execution - /executions/{id}&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;To terminate a task in execution, use &lt;STRONG&gt;/executions/{id}&lt;/STRONG&gt; called using the DELETE method. For example, in the Swagger UI as below, using the &lt;STRONG&gt;f88b8a8f-4a51-4ac5-9453-2c8eaf1e01a4&lt;/STRONG&gt; execution ID returned as part of a previous request (in the &lt;STRONG&gt;Execute Task&lt;/STRONG&gt; example) terminates task execution. Because task execution in the previous API call was successful, the response returned for this terminate operation is &lt;STRONG&gt;Nothing to do for the task: its status is EXECUTION_SUCCESS&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNZLAA2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122156i174C5C27AD4D1651/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNZLAA2.png" alt="0693p000008uNZLAA2.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;In a real-world scenario, the terminate task would help stop execution of any long-running task.&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Get Task execution status - /executions/{id}&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Before terminating a task, calling &lt;STRONG&gt;/executions/{id}&lt;/STRONG&gt; using the GET method returns the status of the task. This operation of getting the execution status by ID tells you whether the task is in progress, has been completed, or has failed. In the screenshot below, for the &lt;STRONG&gt;f88b8a8f-4a51-4ac5-9453-2c8eaf1e01a4&lt;/STRONG&gt; sample execution ID, notice the detailed status returned by the operation as part of &lt;STRONG&gt;Response Body&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNekAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123016iF25E056B494FC23A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNekAAE.png" alt="0693p000008uNekAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;API operations for plans in Talend Cloud&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlaAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122621iF3A02D9C5070134F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlaAAE.png" alt="0693p000008uNlaAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Get available Plans - /executables/plans&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;Like tasks, the cloud API allows you to manage plans externally. A plan is the step-by-step execution of one or more tasks. To list all plans created in all environments, the request URL, submitted using the GET method, is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/plans&lt;/A&gt;. &lt;STRONG&gt;Response Body&lt;/STRONG&gt; lists plans in JSON format:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlfAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121737i5A59E3059987F1CC/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlfAAE.png" alt="0693p000008uNlfAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get Plan details - /executables/plans/{id}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To get details on a particular plan using the executable ID, the request URL, submitted using a GET method, is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/plans/{id}&lt;/A&gt;. In this example, the executable ID is &lt;STRONG&gt;49fe0c6d-95e8-413c-aa97-13a15e506350&lt;/STRONG&gt;, so the request URL is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executables/plans/49fe0c6d-95e8-413c-aa97-13a15e506350’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/plans/49fe0c6d-95e8-413c-aa97-13a15e506350&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;The response for this operation consists of detailed plan information in JSON format:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlkAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124393iF97570FF8CFFBC36/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlkAAE.png" alt="0693p000008uNlkAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Execute Plan - /executions/plans&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To execute a plan from an external system, the request URL format is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans&lt;/A&gt;. This URL is submitted using the POST method. The parameter required for this operation consists of an executable ID in JSON format:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlpAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123373i8B57F46D84585E8B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlpAAE.png" alt="0693p000008uNlpAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Just as with a task execution using the POST method, a plan execution returns an execution ID as the response. A plan execution generates logs for every task in the steps in the plan:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNlzAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121859i9C134211B5241A65/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNlzAAE.png" alt="0693p000008uNlzAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get Plan execution status - /executions/plans/{id}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;To get the execution status of a plan, the request URL format is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans/{id" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans/{id&lt;/A&gt;}. For this example, the request URL is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans/67975122-8e92-4b81-8818-6ce161763ece’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/plans/67975122-8e92-4b81-8818-6ce161763ece&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Response Body&lt;/STRONG&gt; contains detailed information about the plan execution:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNd8AAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122310i0D68B9A3BA8FB071/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNd8AAE.png" alt="0693p000008uNd8AAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;API operations for promotions in Talend Cloud&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNNjAAM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123851i25EA892F8C4526A6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNNjAAM.png" alt="0693p000008uNNjAAM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Get available Promotions - /executables/promotions&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;To get a list of all promotions, the request URL is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executables/promotions&lt;/A&gt;. Whether it is a list of promotions, tasks, or plans, the API call returns the response based on the credentials or token permissions (based on user access). This screenshot shows the sample &lt;STRONG&gt;get available promotions&lt;/STRONG&gt; operation:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNiwAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121850iAAEBF7AA09AC7A08/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNiwAAE.png" alt="0693p000008uNiwAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;Get Promotion details - /executables/promotions/{id}&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;You can get the details of a promotion from the executable ID. Notice the highlighted &lt;STRONG&gt;Request URL&lt;/STRONG&gt; and &lt;STRONG&gt;Response Body&lt;/STRONG&gt; sections:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmOAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121873i8FC5EDB85BBF1165/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmOAAU.png" alt="0693p000008uNmOAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Execute Promotion - /executions/promotions&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;For the &lt;STRONG&gt;execute promotion&lt;/STRONG&gt; operation, the request URL is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions&lt;/A&gt;, called using a POST method that requires a JSON parameter:&lt;/P&gt;
&lt;PRE&gt;{
 "executable": "5ce39250b0daaa43cfc64271",
 "keepTargetResources": true,
 "advanced": {
   "artifactId": "5d5bc62796184c43f45d310e",
   "&lt;STRONG&gt;artifactType&lt;/STRONG&gt;": "&lt;STRONG&gt;ACTION&lt;/STRONG&gt;"
 }
}&lt;/PRE&gt;
&lt;P&gt;The value for &lt;STRONG&gt;artifactType&lt;/STRONG&gt; in the JSON parameter determines the scope of the promotion. Refer to &lt;A href="https://help.talend.com/reader/6SB6Qfc014RWM4mEltupHA/KsAq_ce9J_RY1Fh~tLU1fA" target="_blank" rel="noopener"&gt;Managing promotions&lt;/A&gt; in the Talend Help Center for details about promoting artifacts, tasks, plans, workspaces, and environments.&lt;/P&gt;
&lt;P&gt;The &lt;STRONG&gt;ACTION&lt;/STRONG&gt; value promotes an artifact.&lt;/P&gt;
&lt;P&gt;You are ready to explore the &lt;STRONG&gt;execute promotion&lt;/STRONG&gt; operation in more detail. For the promotion in this article, the source environment is &lt;STRONG&gt;Vpdev&lt;/STRONG&gt; and the target environment is &lt;STRONG&gt;VPProd&lt;/STRONG&gt;. An artifact is promoted using artifact ID &lt;STRONG&gt;5d5bc62796184c43f45d310e&lt;/STRONG&gt; in the &lt;STRONG&gt;VPdev&lt;/STRONG&gt; environment:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmYAAU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123332i4780575462F25039/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmYAAU.png" alt="0693p000008uNmYAAU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The target environment does not have this artifact before executing the promotion:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNSeAAM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/122744i4F46B86623713BF7/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNSeAAM.png" alt="0693p000008uNSeAAM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;When you execute the promotion, &lt;STRONG&gt;Response Body&lt;/STRONG&gt; for the &lt;STRONG&gt;execute promotion&lt;/STRONG&gt; operation contains the execution ID:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmiAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124361i3FE8A9BA4827814D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmiAAE.png" alt="0693p000008uNmiAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The artifact has been promoted:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmnAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121578i88763BDDC9BC8BCA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmnAAE.png" alt="0693p000008uNmnAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Get Promotion execution status - /executions/promotions/{id}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;Using the execution ID returned as the response with the previous &lt;STRONG&gt;execute promotion&lt;/STRONG&gt; operation, you can obtain the execution status of another operation, &lt;STRONG&gt;Get Promotion execution status&lt;/STRONG&gt;. The request URL format is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions/{id}’" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions/{id}&lt;/A&gt;. For example, the URL for the execution ID in the previous operation is &lt;A href="https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions/5d5c0223780a65440e3fed53" target="_blank" rel="noopener"&gt;https://api.eu.cloud.talend.com/tmc/v1.2/executions/promotions/5d5c0223780a65440e3fed53&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0693p000008uNmxAAE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124033i18A37DED0C6D91D3/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uNmxAAE.png" alt="0693p000008uNmxAAE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Conclusion&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;You have learned how to use the Talend Cloud Management Console Public API to manage tasks, plans, and promotions from an external system. You can use either a personal access token or Talend Cloud access credentials. The best practice is to use a personal access token to manage Talend Cloud tasks, plans, and promotions. Performing a combination of operations through the API is ideal for most use cases that require external management.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 02:35:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/ta-p/2151875</guid>
      <dc:creator>TalendSolutionExpert</dc:creator>
      <dc:date>2024-01-23T02:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Talend Cloud Management Console Public API</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2536717#M16575</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;Thanks for this usefull documentation.&lt;/P&gt;&lt;P&gt;Does this latest version exist online like this link for the previous and deprecated version ? &lt;A href="https://api.eu.cloud.talend.com/tmc/swagger/swagger-ui.html#/" target="_blank"&gt;https://api.eu.cloud.talend.com/tmc/swagger/swagger-ui.html#/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 09:14:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2536717#M16575</guid>
      <dc:creator>Arnaud_G</dc:creator>
      <dc:date>2025-11-20T09:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Talend Cloud Management Console Public API</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2536809#M16577</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/296911"&gt;@Arnaud_G&lt;/a&gt;&amp;nbsp;I will check with our team and get back to you as soon as I have any updates.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Shicong&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 07:03:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2536809#M16577</guid>
      <dc:creator>Shicong_Hong</dc:creator>
      <dc:date>2025-11-21T07:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Talend Cloud Management Console Public API</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2536811#M16578</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/296911"&gt;@Arnaud_G&lt;/a&gt;&amp;nbsp;You can find the latest API here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://talend.qlik.dev/apis/" target="_blank"&gt;https://talend.qlik.dev/apis/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Nov 2025 07:15:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2536811#M16578</guid>
      <dc:creator>Shicong_Hong</dc:creator>
      <dc:date>2025-11-21T07:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Talend Cloud Management Console Public API</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2537133#M16587</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/257838"&gt;@Shicong_Hong&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the latest version is 2021-03 ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2025 08:25:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2537133#M16587</guid>
      <dc:creator>Arnaud_G</dc:creator>
      <dc:date>2025-11-25T08:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using the Talend Cloud Management Console Public API</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2537264#M16592</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/296911"&gt;@Arnaud_G&lt;/a&gt;&amp;nbsp;&lt;SPAN&gt;Yes, this is the new API documentation site that Qlik maintains and updates.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 02:30:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Using-the-Talend-Cloud-Management-Console-Public-API/tac-p/2537264#M16592</guid>
      <dc:creator>Shicong_Hong</dc:creator>
      <dc:date>2025-11-26T02:30:04Z</dc:date>
    </item>
  </channel>
</rss>

