Get an All Product Families Catalog Definition

get

/rest/v19/allProductFamilySetups/{allProdFamsVarName}

Use this endpoint to retrieve a catalog definition for the specified All Product Families item.

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

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

Examples

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

Response Body Sample

{
  "companyId": 4118171,
  "variableName": "_allProductFamilies",
  "label": "All Product Families",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies"
    }, {
      "kind": "",
      "rel": "child",
      "name": "attributes",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes"
    }, {
      "kind": "",
      "rel": "child",
      "name": "productFamilies",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies"
    }
  ]
}
Back to Top