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": "03d68929-325f-41d3-9287-c5e19a599175",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
},
{
"OrderItemID": "03d68929-325f-41d3-9287-c5e19a599175",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
}
]
}