{
"id": 1,
"products": [
{
"product_id": 2,
"sku_id": 2,
"quantity": 3,
"checked": 1
},
{
"product_id": 1,
"sku_id": 2,
"quantity": 3,
"checked": 1
}
]
}curl --location --request POST '/cart/item/add' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI3Mzg2MjQ4ODU3NDE3NTUxODcyIiwiaWF0IjoxNzYxMDk2NTM4LCJleHAiOjE3NjExMDM3Mzh9.upLBmIZkGVPG4FfMfv2_jPWvoysmbNo3F9XNuIjZUZU' \
--header 'Token: {{TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 1,
"products": [
{
"product_id": 2,
"sku_id": 2,
"quantity": 3,
"checked": 1
},
{
"product_id": 1,
"sku_id": 2,
"quantity": 3,
"checked": 1
}
]
}'{}