Get Product Families Metadata

get

/rest/v16/productFamilies

This endpoint returns definitions for all Product Families.

Request

Query Parameters
Back to Top

Response

Supported Media Types

Default Response

List of product families.
Body ()
Root Schema : productFam-collection
Type: object
Show Source
Nested Schema : Product Families
Type: array
Title: Product Families
List of product families
Show Source
Nested Schema : productFam
Type: object
Show Source
Back to Top

Examples

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

curl - X GET - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v16/productFamilies

Response Body Sample

{
  "items": [{
      "id": 36637441,
      "dateModified": "2018-10-30T07:29:44.000Z",
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/translations"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/productLines"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/arraySets"
        }
      ],
      "label": "Hi-Tech",
      "variableName": "vision",
      "segmentId": 10,
      "orderNumber": 1
    }
  ],
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/productFamilies"
    }
  ]
}
Back to Top