Get the status of a job.

The sessionID is sent in the header of the request.

Procedure

  • Send the following GET request to the server.
    https://{{server_ip}}:9443/api/v1/tasks/1/status --header "JSESSIONID: {{JSESSIONID}}" --data ""

Results

A successful call returns the ID with the status:
{
    "id": "1",
    "status": "SUCCESS",
    "events": {
        "events": []
    },
    "subTasks": {
        "subtasks": {
            "DIRECT_PATCH_IN_BRINGUP": {
                "status": "SUCCESS",
                "events": {
                    "events": []
                }
            }
        }
    }
}