Get Migration Task

get

/rest/v19/migrationTasks/{taskId}

This endpoint retrieves migration task details.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Migration task information
Body ()
Root Schema : Migration Task Details
Type: object
Title: Migration Task Details
Show Source
Nested Schema : migrationTaskCategory-collection
Type: object
Show Source
Nested Schema : taskCategory
Type: object
Title: taskCategory
Category of Migration Task.
Show Source
Nested Schema : Migration Task Category list
Type: array
Title: Migration Task Category list
List of migration task sub categories.
Show Source
Nested Schema : Migration Task Category Details
Type: object
Title: Migration Task Category Details
Show Source
Nested Schema : Migration Task Category Logs Details
Type: object
Title: Migration Task Category Logs Details
Show Source
Nested Schema : Migration Task Sub Category Log Event
Type: array
Title: Migration Task Sub Category Log Event
List of migration task sub category log event.
Show Source
Nested Schema : Migration Task Sub Category Logs
Type: array
Title: Migration Task Sub Category Logs
List of migration task sub category logs.
Show Source
Nested Schema : Migration Task Sub Category Log Event
Type: object
Title: Migration Task Sub Category Log Event
Show Source
Nested Schema : Migration Task Sub Category Log Messages
Type: object
Title: Migration Task Sub Category Log Messages
Show Source
Nested Schema : Migration Task Sub Category Log Messages
Type: array
Title: Migration Task Sub Category Log Messages
List of migration log messages.
Show Source
Back to Top

Examples

The following example shows how to create a data table by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X POST -H "Authorization: Bearer <token>" -H "Content-type: application/json" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/migrationTasks/3023616692

Response Body Sample

{
  "taskId": 3023616692,
  "owner": "adminuser1",
  "taskCategory": {
    "value": 19,
    "displayValue": "Migrate"
  },
  "status": "Failed",
  "statusLabel": "Failed",
  "date": "2025-02-12T14:41:23.738Z",
  "statusMessage": "One of the object in package ABO_RefApp_Package_24D failed to migrate.",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/migrationTasks/3023616692"
    }, {
      "rel": "child",
      "href": "https://sitename.oracle.com/rest/v19/migrationTasks/3023616692/categories"
    }
  ],
  "isRevertToSnapshot": false,
  "isDownload": false,
  "isDelete": true,
  "isRollback": false,
  "isCancel": false
}
Back to Top