Search code examples
talend

Retrieve list all Labels and their job names from Talend Administration Center using MetaServlet API


I want to retrieve list of all labels and their job names from TAC (Talend Administration Center) preferably using Metaservlet API.

Any help would be appreciated!


Solution

  • You can use the metaservlet API to query the list of tasks, with either of these commands:

    {
      "actionName": "getTasksRelatedToJobs",
      "authPass": "admin",
      "authUser": "[email protected]"
    }
    

    or

    {
      "actionName": "listTasks",
      "authPass": "admin",
      "authUser": "[email protected]",
      "fastMode": "true"
    }