Get an All Product Families Menu Item Price Definition

get

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

Use this endpoint to retrieve a definition for the specified All Product Families 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 All Product Families 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/attributes/aPFSingleSelectMenu/menuItems/38739200/prices/38739244

Response Body Sample

{
  "price": {
    "value": 3.0,
    "currency": "USD"
  },
  "dateModified": "2022-06-08T21:57:19.000Z",
  "id": 38739244,
  "dateAdded": "2022-06-08T21:57:19.000Z",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200/prices/38739244"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200"
    }
  ]
}
Back to Top