Retrieve Job Status (Reconciliation Compliance)

Returns the status of a job for Reconciliation Compliance, indicating if the job is in process, or if it is successfully executed or completed with errors.

REST Resource

GET /armARCS/rest/{api_version}/jobs/{job_id}

Required Roles

Service Administrator, Power User, User, Viewer

Request

Supported Media Types: application/json

Parameters

The following table summarizes the client request.

Table 17-35 Parameters

Name Description Type Required Default
api_version Version of the API you are developing with: v1 Path Yes None
jobIdentifier The ID of the job Path Yes None

Response

Parameters

The following table summarizes the response parameters.

Table 17-36 Parameters

Name Description
details In case of errors, details are published with the error string
status See Migration Status Codes
links Detailed information about the link
href Links to API call or status API
action The HTTP call type
rel Relationship type
data Parameters as key value pairs passed in the request

Supported Media Types: application/json

Example of Response Body

{
  "type": "ARCS",
  "status": 0,
  "details": "Total to copy : 3\nSuccessfully copied : 2\nUnsuccessfully copied : 1\n",
  "links": [
    {
      "rel": "self",
      "href": "https://<SERVICE_NAME>-<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/armARCS/rest/v1/jobs/91",
      "action": "GET"
    }
  ],
  "error": null,
  "items": null,
  "link": null
}