GET v1/store/login/user/orders/cart/price?isChecked={isChecked}&listID={listID}
Gets the cart pricing information of the current user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| isChecked | boolean |
Optional |
|
| listID | globally unique identifier |
Optional |
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": "9fcbfc32-9260-4e14-9c4b-027efa74a509",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
},
{
"OrderItemID": "9fcbfc32-9260-4e14-9c4b-027efa74a509",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
}
]
}