{
"vendorProductId": "14922cc6-2901-4ea4-983f-a90798b08e65",
"quantity": 3,
"totalPrice": 24.99
}
curl --location --request POST '/cartItem' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiJmZjg3ZjJiNS0wYmIxLTRjYjUtODc1OS1mNWY0MzAzZTZmM2IiLCJyb2xlIjoiY3VzdG9tZXIiLCJpYXQiOjE3NDcyOTA1MDAsImV4cCI6MTc0OTg4MjUwMH0.XXZWvDaZxKoL3ZLUoiLlYpzFVh_b0LNz1oqhCC1_MSs' \
--header 'Content-Type: application/json' \
--data-raw '{
"vendorProductId": "14922cc6-2901-4ea4-983f-a90798b08e65",
"quantity": 3,
"totalPrice": 24.99
}'
{
"id": "string",
"cartId": "string",
"vendorProductId": "string",
"quantity": 0,
"totalPrice": 0,
"createdAt": "string",
"updatedAt": "string",
"orderId": null,
"vendorProduct": {
"id": "string",
"vendorId": "string",
"productId": "string",
"price": 0,
"name": "string",
"description": "string",
"discountedPrice": null,
"images": [
"string"
],
"stock": 0,
"isAvailable": true,
"isAlcohol": true,
"isAgeRestricted": true,
"attributes": null,
"categoryIds": [
null
],
"createdAt": "string",
"updatedAt": "string"
}
}