Get Migration Report of Application

get

/process/api/v1/oic-migration/migrations/{migrationId}

Get a migration report for an application that is being migrated from Oracle Integration Generation 2 to Oracle Cloud Infrastructure Process Automation.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Migration report found
Body ()
Root Schema : RestMigration
Type: object
Show Source
Nested Schema : RestReport
Type: object
Show Source
Nested Schema : remarks
Type: array
Show Source
Nested Schema : RestRemark
Type: object
Show Source

500 Response

An internal error occurred.
Back to Top

Examples

The following example shows how to get a report on a migration 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: Retrieve details of migration 3fa85f64-5717-4562-b3fc-2c963f66afa6

curl -X 'GET' \
  'https://<OIC URL>/process/api/v1/oic-migration/migrations/3fa85f64-5717-4562-b3fc-2c963f66afa6' \
  -H 'accept: application/json'

Example: Response body of 200 migration report found in JSON format


{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "projectId": null,
  "projectName": "string",
  "projectType": "PROJECT",
  "originalProjectName": "string",
  "migratedBy": "string",
  "migratedOn": "2024-08-09T10:07:48.738Z",
  "result": "string",
  "report": {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "remarks": [
      {
        "artifactId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "artifactName": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "artifactType": "PROJECT",
        "type": "ASSET_MIGRATED",
        "remark": "string"
      }
    ]
  }
}
Back to Top