curl --location --globoff --request PATCH '{store_url}/api/v1//cart/items/item_123' \
--data-urlencode 'quantity=3'{
"item": {
"id": 10,
"product_id": "prod_123",
"name": "Custom Mug",
"quantity": 3,
"price": 50,
"price_string": "50 ر.س",
"custom_fields": [
{
"name": "string",
"label": "string",
"type": "string",
"value": "string",
"formatted_value": "string"
}
]
},
"cart_items_quantity": 5
}