Get List of All Product Families Menu Item Price Definitions

get

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

Use this endpoint to retrieve a list of definitions for All Product Families attribute menu item prices.

Request

Supported Media Types
Path Parameters
Query Parameters
  • Restrict which fields shall be returned. The value is a comma delimited string and each token is a field name.
  • The requested page size, which limits the number of elements the collection should max return.
  • The offset of the page. By default, offset is 0, which means first page will be returned.
  • Specifies a comma-separated list of pairs to order the response by.
  • Allows to specify one or more filtering criteria. By default, no filtering is applied.
  • Specifies that the total count of records should be included in the response when doing pagination.
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : configMenuItemPrices-collection
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested 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 list of definitions for All Product Families attribute menu item prices 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

Response Body Sample

{
  "hasMore": false,
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200/prices"
    }
  ],
  "items": [{
      "price": {
        "value": 279.0,
        "currency": "EUR"
      },
      "dateModified": "2022-06-08T21:57:19.000Z",
      "id": 38739242,
      "dateAdded": "2022-06-08T21:57:19.000Z",
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200/prices/38739242"
        }, {
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200"
        }
      ]
    }, {
      "price": {
        "value": 3.0,
        "currency": "GBP"
      },
      "dateModified": "2022-06-08T21:57:19.000Z",
      "id": 38739243,
      "dateAdded": "2022-06-08T21:57:19.000Z",
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200/prices/38739243"
        }, {
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/attributes/aPFSingleSelectMenu/menuItems/38739200"
        }
      ]
    }, {
      "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