Get Migration Task Categories
get
/rest/v19/migrationTasks/{taskId}/categories
This endpoint retrieves a list of migration task categories for a specified task.
Request
Path Parameters
-
taskId(required): number
The task identifier.
Query Parameters
-
expand: string
Expand the child content.Allowed Values:
[ "all" ]
Response
Supported Media Types
- application/json
Default Response
List of categories for migration task
Root Schema : migrationTaskCategory-collection
Type:
Show Source
object
-
items:
array Migration Task Category list
Title:
Migration Task Category list
List of migration task sub categories. -
links:
array Links to the related objects
Title:
Links to the related objects
Links to the related objects
Nested Schema : Migration Task Category list
Type:
array
Title:
Migration Task Category list
List of migration task sub categories.
Show Source
-
Array of:
object Migration Task Category Details
Title:
Migration Task Category Details
Nested Schema : Links to the related objects
Type:
array
Title:
Links to the related objects
Links to the related objects
Show Source
-
Array of:
object referenceLinks
Reference links for the Parent, Self, Children and Related as applicable
Nested Schema : Migration Task Category Details
Type:
object
Title:
Show Source
Migration Task Category Details
-
category:
string
Title:
category
Migration task sub category. -
categoryDetails:
object Migration Task Category Logs Details
Title:
Migration Task Category Logs Details
-
categoryLabel:
string
Title:
categoryLabel
Category display name. -
date:
string
Title:
date
Completed date for migration sub task. -
links:
array Links to the related objects
Title:
Links to the related objects
Links to the related objects -
status:
string
Title:
status
Status of the migration sub task. -
statusLabel:
string
Title:
statusLabel
Status display name. -
statusMessage:
string
Title:
statusMessage
Task Status message.
Nested Schema : Migration Task Category Logs Details
Type:
object
Title:
Show Source
Migration Task Category Logs Details
-
category:
string
Title:
category
Migration task sub category. -
categoryLabel:
string
Title:
categoryLabel
Category display name. -
events:
array Migration Task Sub Category Log Event
Title:
Migration Task Sub Category Log Event
List of migration task sub category log event. -
logs:
array Migration Task Sub Category Logs
Title:
Migration Task Sub Category Logs
List of migration task sub category logs.
Nested Schema : Links to the related objects
Type:
array
Title:
Links to the related objects
Links to the related objects
Show Source
-
Array of:
object referenceLinks
Reference links for the Parent, Self, Children and Related as applicable
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
-
Array of:
object Migration Task Sub Category Log Event
Title:
Migration Task Sub Category Log Event
Nested Schema : Migration Task Sub Category Logs
Type:
array
Title:
Migration Task Sub Category Logs
List of migration task sub category logs.
Show Source
-
Array of:
object Migration Task Sub Category Log Messages
Title:
Migration Task Sub Category Log Messages
Nested Schema : Migration Task Sub Category Log Event
Type:
object
Title:
Show Source
Migration Task Sub Category Log Event
-
name:
string
Title:
name
Name of the log event. -
status:
string
Title:
status
Status of the event. -
statusLabel:
string
Title:
statusLabel
Event status display name. -
statusMessage:
string
Title:
statusMessage
Event status message. -
timeStamp:
string
Title:
timeStamp
Event completed timestamp.
Nested Schema : Migration Task Sub Category Log Messages
Type:
object
Title:
Show Source
Migration Task Sub Category Log Messages
-
displayName:
string
Title:
displayName
Display Name of the log Messages. -
items:
array Migration Task Sub Category Log Messages
Title:
Migration Task Sub Category Log Messages
List of migration log messages.
Nested Schema : Migration Task Sub Category Log Messages
Type:
array
Title:
Migration Task Sub Category Log Messages
List of migration log messages.
Show Source
-
Array of:
string
Title:
Message
Message
Nested Schema : referenceLinks
Type:
object
Reference links for the Parent, Self, Children and Related as applicable
Show Source
-
href:
string
Title:
URL to the related object
URL to the related object -
rel:
string
Title:
Link Relationship to the current object
Link Relationship to the current object
Examples
The following example shows how to retrieve a list of migration task categories for a specified task 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/3023616692/categories
Request Body Sample
{ "items": [{ "category": "FILE_MANAGER", "categoryLabel": "File Manager", "date": "2025-02-12T14:31:58.344Z", "status": "Successful", "statusLabel": "Successful", "links": [{ "rel": "self", "href": "https://sitename.oracle.com/rest/v19/migrationTasks/3023616692/categories/FILE_MANAGER" } ] }, { "category": "COMMERCE", "categoryLabel": "Commerce", "date": "2025-02-12T14:32:04.359Z", "status": "Successful", "statusLabel": "Successful", "statusMessage": "Warning occurred during the migration. Please see the logs for more details.", "links": [{ "rel": "self", "href": "https://sitename.oracle.com/rest/v19/migrationTasks/3023616692/categories/COMMERCE" } ] }, { "category": "UTIL_LIBRARY", "categoryLabel": "Util Library", "date": "2025-02-12T14:32:58.887Z", "status": "Successful", "statusLabel": "Successful", "links": [{ "rel": "self", "href": "https://sitename.oracle.com/rest/v19/migrationTasks/3023616692/categories/UTIL_LIBRARY" } ] }, { "category": "PACKAGE", "categoryLabel": "Package", "date": "2025-02-12T14:41:23.738Z", "status": "Successful", "statusLabel": "Successful", "links": [{ "rel": "self", "href": "https://sitename.oracle.com/rest/v19/migrationTasks/3023616692/categories/PACKAGE" } ] } ], "links": [{ "rel": "self", "href": "https://sitename.oracle.com/rest/v19/migrationTasks/3023616692/categories" } ] }