Get Automation Job Status

get

/taas/getAutomationJobStatus/{jobID}

Checks whether result.json exists for the specified job ID.

Request

Path Parameters
Back to Top

Response

Default Response

Retreives the default response.
Back to Top

Examples

The following example shows how to retrieve an automation job's status by ID by submitting a GET request on the REST resource using cURL. For more information about cURL, see "Use cURL".

curl -X GET "hostname:port/taas/job/1" -H "accept: */*"

Example of Response Body

If successful, the response code 200 is returned with a response body. For example:

{
"1":"In-progress"
}

If the request fails, the response includes the appropriate HTTP code. For a 4xx/5xx code, the message body also contains a ProblemDetails structure with the cause attribute set to the appropriate application error.

Back to Top