curl --location --request DELETE 'https://v1.dev.bukalombok.com/v1/customer/cart/items' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"itemIds": [
"31b1add0-baf7-412e-a032-76a7919b5e54",
"76500d0e-34a0-4a2f-9a4c-bddf7a325da1"
]
}'{
"meta": {
"success": true,
"status": 200,
"message": "Berhasil menghapus 2 item dari keranjang"
},
"data": {
"deletedItems": [
{
"id": "31b1add0-baf7-412e-a032-76a7919b5e54",
"productId": "cd4b08f1-470d-471f-9e41-b4b7e6cc8c41",
"variantId": "b615bacc-f0c5-4e42-9093-f9af0818df26",
"productName": "Topi",
"variantName": "Merah - L",
"quantity": 3,
"price": 110000,
"totalPrice": 330000
},
{
"id": "76500d0e-34a0-4a2f-9a4c-bddf7a325da1",
"productId": "3ed1e345-48d1-493e-ac1c-3d92815592b1",
"variantId": "388c1ff1-c0c3-4196-b3c8-8343498a5cd7",
"productName": "Baju Testinggg",
"variantName": "Hitam - XXL",
"quantity": 1,
"price": 20000,
"totalPrice": 20000
}
],
"summary": {
"deletedCount": 2,
"remainingItems": 0
}
}
}