curl --request POST \
--url https://storekit.samarthh.me/v1/store/{storeId}/cart/multiple \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"productId": "550e8400-e29b-41d4-a716-446655440000",
"quantity": 2
},
{
"productId": "550e8400-e29b-41d4-a716-446655440001",
"quantity": 1
}
]
}
'Add multiple products to the cart in a single request. Quantities will be merged if products already exist. Requires store user authentication.
curl --request POST \
--url https://storekit.samarthh.me/v1/store/{storeId}/cart/multiple \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"productId": "550e8400-e29b-41d4-a716-446655440000",
"quantity": 2
},
{
"productId": "550e8400-e29b-41d4-a716-446655440001",
"quantity": 1
}
]
}
'