Get a Product Line Setup

get

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

Use this endpoint to retrieve the specified Product Line setup.

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Product Lines Setups
Type: object
Title: Product Lines Setups
Show Source
Back to Top

Examples

The following example shows how to retrieve a catalog definition for the specified Product Line 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

Response Body Sample

{
  "companyId": 4118171,
  "variableName": "standAloneServices",
  "segmentId": 13,
  "description": null,
  "dateModified": "2020-05-04T16:32:27.000Z",
  "id": 36732586,
  "label": "Stand Alone Services",
  "dateAdded": "2018-11-09T17:27:10.000Z",
  "parentId": -1,
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines/standAloneServices"
    }, {
      "kind": "",
      "rel": "child",
      "name": "attributes",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines/standAloneServices/attributes"
    }, {
      "kind": "",
      "rel": "child",
      "name": "models",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines/standAloneServices/models"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC"
    }
  ]
}
Back to Top