Get a Product Family Setup

get

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

Use this endpoint to retrieve the specified Product Family setup.

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

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

Examples

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

Response Body Sample

{
  "companyId": 4118171,
  "variableName": "unityINC",
  "segmentId": 13,
  "name": "Unity INC",
  "dateModified": "2021-02-03T17:40:33Z",
  "id": 36732579,
  "dateAdded": "2018-11-09T17:24:51Z",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC"
    }, {
      "kind": "",
      "rel": "child",
      "name": "attributes",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/attributes"
    }, {
      "kind": "",
      "rel": "child",
      "name": "productLines",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/unityINC/productLines"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies"
    }
  ]
}
Back to Top