Get a Product Family Menu Item Price Definition

get

/rest/v19/allProductFamilySetups/{allProdFamsVarName}/productFamilies/{prodFamVarName}/attributes/{attributeVarName}/menuItems/{menuItem_Id}/prices/{price_Id}

Use this endpoint to retrieve a definition for the specified Product Family attribute menu item price.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Config Menu Item Prices
Type: object
Title: Config Menu Item Prices
Show Source
Nested Schema : Price
Type: object
Title: Price
Price
Show Source
Back to Top

Examples

The following example shows how to retrieve a catalog definition for the specified Product Family attribute menu item price 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/productFamilies/varioTablets/attributes/processor/menuItems/36874194/prices/38739364

Response Body Sample

{
  "price": {
    "value": 59.67,
    "currency": "USD"
  },
  "dateModified": "2022-06-08T23:59:48.000Z",
  "id": 38739364,
  "dateAdded": "2022-06-08T23:59:48.000Z",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/varioTablets/attributes/processor/menuItems/3sitename.oracle.com/rest/v1974194/prices/38739364"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/varioTablets/attributes/processor/menuItems/3sitename.oracle.com/rest/v1974194"
    }
  ]
}
Back to Top