Before you begin, ensure you have the following:

How to
Following the Talend API documentation in order to trigger a job you need to call theĀ execution method.
POST https://api.eu.cloud.talend.com/tmc/v2.6/executions
accept: application/json
Content-Type: application/json
Authorization: 'Bearer '+ BEARER, //the token id from the tmc
{
"executable": "57f64991e4b0b689a64feed0",//your_task_id
"logLevel": "ERROR" //WARN, ERROR,INFO
} |