Get Category Migration Resources

get

/rest/v19/migrationResources/{category}

This endpoint retrieves 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
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 -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/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/v19/migrationResources/UTIL_LIBRARY/recommendationRule_StringArrayAttribute"
            }
          ]
        }, {
          "name": "TranslatedLanguage",
          "variableName": "translatedLanguage",
          "resourceType": "library",
          "links": [{
              "rel": "related",
              "href": "http:// https://sitename.oracle.com/rest/v19/migrationResources/UTIL_LIBRARY/translatedLanguage"
            }
          ]
        },
Back to Top