Get Migration Resource Low-level Details
get
/rest/v19/migrationResources/{category}/{variableName}
This endpoint retrieves low-level details of a migration resource within a specific category.
Request
Path Parameters
-
category(required): string
Category of the Migration Resource contents.
-
variableName(required): string
variableName of the Migration Resource Contents Category.
Response
Supported Media Types
- application/json
Default Response
Migration resource low-level detail response
Root Schema : migration-lowLevelResponse
Type:
Show Source
object-
children:
array Migration resources low-level details Children
Title:
Migration resources low-level details ChildrenMigration resources low-level details children -
hasProperties:
string
Title:
hasPropertiesTrue, if the resource has migratable properties. (Internal use) -
lastModified:
string
Title:
lastModifiedThe last modified date, in a presentable string format. Used in the tree for this object -
links:
array Migration resources low-level details links
Title:
Migration resources low-level details linksshows self and parent links -
modifiedByUser:
string
Title:
modifiedByUserThe modifiedByUser used in the tree for this object -
name:
string
Title:
nameThe name used in the tree for this object. -
variableName:
string
Title:
variableNameThe variableName used in the tree for this object
Nested Schema : Migration resources low-level details Children
Type:
arrayTitle:
Migration resources low-level details ChildrenMigration resources low-level details children
Show Source
Nested Schema : Migration resources low-level details links
Type:
arrayTitle:
Migration resources low-level details linksshows self and parent links
Show Source
-
Array of:
object referenceLinks
Reference links for the Parent, Self, Children and Related as applicable
Nested Schema : migrationPackageLowLevelDetails-children
Type:
Show Source
object-
hasProperties:
string
Title:
hasPropertiesTrue, if the resource has migratable properties. (Internal use) -
lastModified:
string
Title:
lastModifiedThe last modified date, in a presentable string format. Used in the tree for this object. -
modifiedByUser:
string
Title:
modifiedByUserThe modifiedByUser used in the tree for this object -
name:
string
Title:
nameThe name used in the tree for this object. -
resourceType:
string
Title:
Migration Package node nameresourceType refers to the node type -
resourceTypeLabel:
string
Title:
Migration Resource Type LabelresourceTypeLabel refers the node type label -
variableName:
string
Title:
variableNameThis field represents the variableName of the resource.
Nested Schema : referenceLinks
Type:
objectReference links for the Parent, Self, Children and Related as applicable
Show Source
-
href:
string
Title:
URL to the related objectURL to the related object -
rel:
string
Title:
Link Relationship to the current objectLink Relationship to the current object
Examples
The following example shows how to get low-level details of a migration resource within a specific category 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 "Accept: application/json" https://sitename.oracle.com/rest/v19/migrationResources/COMMERCE/test
Response Body Sample
{
"name": "Test",
"variableName": "test",
"modifiedByUser": "matt",
"lastModified": "09/19/2019 12:30 PM",
"children": [{
"name": "Export File Attachments",
"variableName": "_action_export_file_attachments",
"resourceType": "action",
"modifiedByUser": "matt",
"lastModified": "12/15/2017 3:25 PM"
}, {
"name": "Main",
"variableName": "main",
"resourceType": "document",
"modifiedByUser": "matt",
"lastModified": "09/18/2019 3:07 PM",
"children": [{
"name": "SSM 1",
"variableName": "sSM1",
"resourceType": "attribute",
"modifiedByUser": "matt",
"lastModified": "09/17/2019 9:11 AM"
}, {
"name": "submit",
"variableName": "submit",
"resourceType": "action",
"lastModified": "01/05/2023 9:55 AM"
}, {
"name": "Hide AJAX Output Sub",
"variableName": "hideAJAXOutputSub",
"resourceType": "rule",
"modifiedByUser": "matt",
"lastModified": "09/17/2019 1:19 PM"
}
]
}, {
"name": "formulaOutput = formulaInput",
"variableName": "formulaOutput = formulaInput",
"resourceType": "formula",
"modifiedByUser": "matt",
"lastModified": "09/17/2019 12:44 PM"
}, {
"name": "To Step 2 Step",
"variableName": "toStep2",
"resourceType": "step",
"lastModified": "12/15/2017 3:25 PM"
}, {
"name": "Document PDF(Printer Friendly/History)",
"variableName": "documentPDF",
"resourceType": "xsl_view",
"modifiedByUser": "matt",
"lastModified": "12/15/2017 3:25 PM"
}
],
"links": [{
"rel": "self",
"href": "https://sitename.oracle.com/rest/v19/migrationResources/COMMERCE/test"
}
]
}