GET v1/store/login/user/orders/wishList/price

Gets the wish list pricing information of the current user.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

CartPriceModel
NameDescriptionTypeAdditional information
Items

Provides pricing information for the Shopping Cart items.

Collection of CartItemPriceModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "OrderItemID": "ae10ffe6-406c-41e9-b6eb-35be3f407fac",
      "Price": 1.0,
      "Tax": 1.0,
      "IsChanged": true,
      "IsValid": true
    },
    {
      "OrderItemID": "ae10ffe6-406c-41e9-b6eb-35be3f407fac",
      "Price": 1.0,
      "Tax": 1.0,
      "IsChanged": true,
      "IsValid": true
    }
  ]
}