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| Name | Description | Type | Additional information |
|---|---|---|---|
| Items |
Provides pricing information for the Shopping Cart items. |
Collection of CartItemPriceModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"OrderItemID": "818fd6eb-11f0-4398-82ab-c9431d7f84e0",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
},
{
"OrderItemID": "818fd6eb-11f0-4398-82ab-c9431d7f84e0",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
}
]
}