Get a Model Catalog Definition

get

/rest/v19/allProductFamilySetups/{allProdFamsVarName}/productFamilies/{prodFamVarName}/productLines/{prodLineVarName}/models/{modelVarName}

Use this endpoint to retrieve a catalog definition for the specified Model.

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Models
Type: object
Title: Models
Show Source
Back to Top

Examples

The following example shows how to retrieve a catalog definition for the specified Model by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines/standAloneServices/models/internet

Response Body Sample

{
  "companyId": 4118171,
  "variableName": "internet",
  "description": "<img src=\"$BASE_PATH$/images/Internet.png \" alt=\"Internet\" /></br>\nStay connected with unbelievable download speeds",
  "dateModified": "2020-05-04T16:32:27.000Z",
  "id": 38073912,
  "label": "Unity Internet",
  "dateAdded": "2019-07-30T12:42:41.000Z",
  "parentId": 36732586,
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines/standAloneServices/models/internet"
    }, {
      "kind": "",
      "rel": "child",
      "name": "attributes",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines/standAloneServices/models/internet/attributes"
    }, {
      "kind": "",
      "rel": "child",
      "name": "bomMappingRules",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines/standAloneServices/models/internet/bomMappingRules"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines/standAloneServices"
    }
  ]
}
Back to Top