Feature request from qwerty7869, posted on GitHub Jul 01, 2016
Steps to reproduce
Add products in cart
Hit api GET /V1/carts/mine/items
Response will be
[
{
"item_id": 244,
"sku": "24-WB04",
"qty": 2,
"name": "Push It Messenger Bag",
"price": 45,
"product_type": "simple",
"quote_id": "202"
},
{
"item_id": 245,
"sku": "MSH03-33-Black",
"qty": 1,
"name": "Meteor Workout Short",
"price": 32.5,
"product_type": "configurable",
"quote_id": "202",
"product_option": {
"extension_attributes": {
"configurable_item_options": [
{
"option_id": "90",
"option_value": 49
},
{
"option_id": "138",
"option_value": 177
}
]
}
}
}
]
Expected result
Response should have product row total and image which is the basic functionality required in all the sites.
... View more