Get an All Product Families Menu Item Definition

get

/rest/v19/allProductFamilySetups/{allProdFamsVarName}/attributes/{attributeVarName}/menuItems/{menuItem_Id}

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

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Config Menu Items
Type: object
Title: Config Menu Items
Show Source
Back to Top

Examples

The following example shows how to retrieve a catalog definition for the specified All Product Families attribute menu 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/attributes/aPFSingleSelectMenu/menuItems/38739200

Response Body Sample

{
  "orderNumber": 3,
  "itemValue": "Option 3",
  "dateModified": "2022-06-08T21:57:19.000Z",
  "id": 38739200,
  "dateAdded": "2022-06-08T21:47:29.000Z",
  "itemText": "Option 3",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200"
    }, {
      "kind": "",
      "rel": "child",
      "name": "images",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200/images"
    }, {
      "kind": "",
      "rel": "child",
      "name": "prices",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200/prices"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu"
    }
  ]
}
Back to Top