Get Migration Resource Low-level Details

get

/rest/v16/migrationResources/{category}/{variableName}

Use this endpoint to retrieve low-level details of a migration resource within a specific category.

Request

Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Migration resource low-level detail response
Body ()
Root Schema : migration-lowLevelResponse
Type: object
Show Source
Nested Schema : Migration resources low-level details Children
Type: array
Title: Migration resources low-level details Children
Migration resources low-level details children
Show Source
Nested Schema : migrationPackageLowLevelDetails-children
Type: object
Show Source
Back to Top

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 -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/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/v16/migrationResources/COMMERCE/test"
    }
  ]
}
Back to Top