Get Product Family Metadata

get

/rest/v16/productFamilies/{prodFamVarName}

This endpoint returns definitions for a specific Product Family.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Product family details.
Body ()
Root 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/vision

Translations

The following components can be appended to the end of this endpoint to return translation metadata:

  • /translations - This returns all language translations for the requested entity.
  • /translations/{langCode} - This returns a specific language translation for the requested entity. Example: /translations/es

Response Body Sample

{
  "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
}
Back to Top