Get Migration Task Category Details
get
/rest/v19/migrationTasks/{taskId}/categories/{category}
This endpoint retrieves a list of migration task category details.
Request
Path Parameters
-
category(required): number
Category name.
-
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
Migration task category details
Root Schema : Migration Task Category Logs Details
Type:
objectTitle:
Show Source
Migration Task Category Logs Details-
category:
string
Title:
categoryMigration task sub category. -
categoryLabel:
string
Title:
categoryLabelCategory display name. -
events:
array Migration Task Sub Category Log Event
Title:
Migration Task Sub Category Log EventList of migration task sub category log event. -
logs:
array Migration Task Sub Category Logs
Title:
Migration Task Sub Category LogsList of migration task sub category logs.
Nested Schema : Migration Task Sub Category Log Event
Type:
arrayTitle:
Migration Task Sub Category Log EventList 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:
arrayTitle:
Migration Task Sub Category LogsList 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:
objectTitle:
Show Source
Migration Task Sub Category Log Event-
name:
string
Title:
nameName of the log event. -
status:
string
Title:
statusStatus of the event. -
statusLabel:
string
Title:
statusLabelEvent status display name. -
statusMessage:
string
Title:
statusMessageEvent status message. -
timeStamp:
string
Title:
timeStampEvent completed timestamp.
Nested Schema : Migration Task Sub Category Log Messages
Type:
objectTitle:
Show Source
Migration Task Sub Category Log Messages-
displayName:
string
Title:
displayNameDisplay Name of the log Messages. -
items:
array Migration Task Sub Category Log Messages
Title:
Migration Task Sub Category Log MessagesList of migration log messages.
Nested Schema : Migration Task Sub Category Log Messages
Type:
arrayTitle:
Migration Task Sub Category Log MessagesList of migration log messages.
Show Source
-
Array of:
string
Title:
MessageMessage
Examples
The following example shows how to retrieve a list of migration task category details 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/categories/file_manager
Response Body Sample
{
"category": "FILE_MANAGER",
"categoryLabel": "File Manager",
"events": [{
"name": "Begin Upload",
"timeStamp": "2025-02-12T14:31:58.344Z",
"status": "Successful",
"statusLabel": "Successful"
}, {
"name": "Complete",
"timeStamp": "2025-02-12T14:32:03.000Z",
"status": "Successful",
"statusLabel": "Successful"
}
],
"logs": [{
"displayName": "ABO/defaultContextJson.txt",
"items": [{
"level": "INFO",
"levelLabel": "Info",
"message": "Starting the migration process.",
"timeStamp": "2025-02-12T14:32:02.778Z"
}, {
"level": "INFO",
"levelLabel": "Info",
"message": "Starting to save data to database.",
"timeStamp": "2025-02-12T14:32:02.831Z"
}, {
"level": "INFO",
"levelLabel": "Info",
"message": "Completed saving data to database.",
"timeStamp": "2025-02-12T14:32:02.855Z"
}, {
"level": "INFO",
"levelLabel": "Info",
"message": "Completed the migration process.",
"timeStamp": "2025-02-12T14:32:02.935Z"
}
]
}, {
"displayName": "Bulk Processor for File Manager",
"items": [{
"level": "INFO",
"levelLabel": "Info",
"message": "Starting the migration process.",
"timeStamp": "2025-02-12T14:32:02.935Z"
}, {
"level": "INFO",
"levelLabel": "Info",
"message": "Completed the migration process.",
"timeStamp": "2025-02-12T14:32:02.936Z"
}
]
}
]
}