Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Ritz05
Contributor
Contributor

Cloud Task pointing to previous version of Artifact

Hi Team,

I need to build a Talend job in studio which should provide me all Talend task name which are pointing to older/previous version of their Talend artifact in cloud for a given workspace.

Can anyone directs to implement this in Studio.Is there any API call which gives us output like this? I meant task name which is pointing to its older/previous version of artifact. we can see blue circle on TIC console of this type of task.

Thanks,

Labels (3)
1 Reply
Anonymous
Not applicable

Hi

I think you can combine the following three APIs to get the task names which are pointing to an old version of artifact.

1) Get available Artifacts

https://api.us.cloud.talend.com/tmc/v2.6/artifacts

 

2) Get available tasks

https://api.us.cloud.talend.com/tmc/v2.6/executables/tasks

 

3) Get Task by id

https://api.us.cloud.talend.com/tmc/v2.6/executables/tasks/5f9a797eaeaea17c0b0a88e5

 

​For more details about these public APIs, please refer to the API documentation.

https://api.us.cloud.talend.com/tmc/swagger/swagger-ui.html#!/tasks/getTaskScheduleMultipleTriggers

 

Please try and let me know if you have any questions.

 

Regards

Shong