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
CartPriceModelName | 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": "9c4c78ec-0aa1-4e15-98ef-e0693813111e", "Price": 1.0, "Tax": 1.0, "IsChanged": true, "IsValid": true }, { "OrderItemID": "9c4c78ec-0aa1-4e15-98ef-e0693813111e", "Price": 1.0, "Tax": 1.0, "IsChanged": true, "IsValid": true } ] }