Get Product Line Attribute Menu Item Metadata

get

/rest/v16/productFamilies/{prodFamVarName}/productLines/{prodLineVarName}/attributes/{attributeVarName}/menuItems/{menuItemId}

This service returns the metadata for a specific menu item for an attribute of a Product Line.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Menu item details of an attribute defined at product line level.
Body ()
Root 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/productLines/servers/arraySets/applicationSoftware/attributes/softwarePackage_array/menuItems/36673560

Response Body Sample

{
  "id": 36673560,
  "links": [{
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/productLines/servers/arraySets/applicationSoftware/attributes/softwarePackage_array"
    }, {
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/productLines/servers/arraySets/applicationSoftware/attributes/softwarePackage_array/menuItems/36673560"
    }, {
      "rel": "child",
      "href": "https://sitename.oracle.com/rest/v16/productFamilies/vision/productLines/servers/arraySets/applicationSoftware/attributes/softwarePackage_array/menuItems/36673560/translations"
    }
  ],
  "displayValue": "Enterprise Anti-Virus",
  "value": "Vision Enterprise Anti-Virus",
  "orderNumber": 1
}
Back to Top