Get Product Family Attribute Menu Items Metadata

get

/rest/v16/productFamilies/{prodFamVarName}/attributes/{attributeVarName}/menuItems

Get all menu items of an attribute defined at product family level.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

All menu items of an attribute defined at product family level.
Body ()
Root Schema : menuItem-collection
Type: object
Show Source
Nested Schema : Menu Items
Type: array
Title: Menu Items
List of menu items.
Show Source
Nested Schema : menuItem
Type: object
Show Source
Nested Schema : avp
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/attributes/operatingSystem_selector/menuItems

Response Body Sample

{
  "items": [{
      "id": 36673406,
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673406"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673406/translations"
        }
      ],
      "displayValue": "All Operating Systems",
      "value": "All Operating Systems",
      "orderNumber": 1
    }, {
      "id": 36673407,
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673407"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673407/translations"
        }
      ],
      "displayValue": "Oracle Linux",
      "value": "Oracle Linux",
      "orderNumber": 2
    }, {
      "id": 36673408,
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673408"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673408/translations"
        }
      ],
      "displayValue": "Ubuntu Server Edition",
      "value": "Ubuntu Server Edition",
      "orderNumber": 3
    }, {
      "id": 36673409,
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673409"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673409/translations"
        }
      ],
      "displayValue": "openSUSE Linux Enterprise Server",
      "value": "openSUSE Linux Enterprise Server",
      "orderNumber": 4
    }, {
      "id": 36673410,
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673410"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673410/translations"
        }
      ],
      "displayValue": "Blue Hat Enterprise Premium",
      "value": "Blue Hat Enterprise Premium",
      "orderNumber": 5
    }, {
      "id": 36673411,
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673411"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673411/translations"
        }
      ],
      "displayValue": "Blue Hat Enterprise Standard",
      "value": "Blue Hat Enterprise Standard",
      "orderNumber": 6
    }, {
      "id": 36673412,
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673412"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems/36673412/translations"
        }
      ],
      "displayValue": "Blue Hat Enterprise Self-Support",
      "value": "Blue Hat Enterprise Self-Support",
      "orderNumber": 7
    }
  ],
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/attributes/operatingSystem_selector/menuItems"
    }
  ]
}
Back to Top