List Migration Jobs

get

/process/api/v1/oic-migration/jobs

Retrieve details of all jobs that are related to migrating Oracle Integration Generation 2 applications to Oracle Cloud Infrastructure Process Automation.

Request

There are no request parameters for this operation.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : MigrationJobs
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : MigrationJob
Type: object
Show Source
Nested Schema : jobApps
Type: array
Show Source
Nested Schema : MigrationJobApp
Type: object
Show Source

500 Response

An internal error occurred.
Back to Top

Examples

The following example shows how to retrieve the list of migration jobs by submitting a GET request on the REST resource using cURL. For more information about cURL, see cURL Access. For more information about endpoint URL structure, see Send Requests.

Example: Get a list of migration jobs

curl -X 'GET' \
  'https://<OIC URL>/process/api/v1/oic-migration/jobs' \
  -H 'accept: application/json'

Example: Response body of 200 successful operation in JSON format

{
  "items": [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "bucketUrl": "string",
      "jobApps": [
        {
          "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
          "appUrl": "string",
          "name": "string",
          "version": "string",
          "status": "NOT_STARTED",
          "migrationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
        }
      ],
      "startedDate": "2024-08-09T10:17:25.578Z",
      "finishedDate": "2024-08-09T10:17:25.578Z",
      "status": "NOT_STARTED"
    }
  ]
}
Back to Top