Get Category Migration Resources

get

/rest/v16/migrationResources/{category}

Use this endpoint to retrieve all migration resources for a given category.

Request

Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Migration resources by category
Body ()
Root Schema : migrationContent
Type: object
Low-level details
Show Source
Nested Schema : List of children contents
Type: array
Title: List of children contents
List of children contents
Show Source
Nested Schema : migrationContent-children
Type: object
Migration Resource children contents
Show Source
  • Title: granular
    If true, the resource has low-level details
  • Category Migration Resource Links
  • Title: Migration Package Contents Name
    Name is an optional field in Request Payload
  • Title: Migration Package node name
    resourceType refers the node
  • Title: Migration Package Content Child VarName
    variableName refers the child varname
Back to Top

Examples

The following example shows how to get all migration resources for 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 -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/migrationResources/UTIL_LIBRARY

Response Body Sample

{
  "items": [{
      "name": "Util Library",
      "category": "UTIL_LIBRARY",
      "children": [{
          "name": "RecommendationRule_StringArrayAttribute",
          "variableName": "recommendationRule_StringArrayAttribute",
          "resourceType": "library",
          "links": [{
              "rel": "related",
              "href": "http:// https://sitename.oracle.com/rest/v16/migrationResources/UTIL_LIBRARY/recommendationRule_StringArrayAttribute"
            }
          ]
        }, {
          "name": "TranslatedLanguage",
          "variableName": "translatedLanguage",
          "resourceType": "library",
          "links": [{
              "rel": "related",
              "href": "http:// https://sitename.oracle.com/rest/v16/migrationResources/UTIL_LIBRARY/translatedLanguage"
            }
          ]
        },
Back to Top