{
"cart_ids": [
1,
2,
3
],
"store_ids": [
1,
2
],
"address_id": 1,
"store_coupon_ids": [
1,
2
]
}curl --location --request POST '/api/food/order_checkout/check' \
--header 'access-token: {{access-token}}' \
--header 'refresh-token: {{refresh-token}}' \
--header 'manage-store-id: 1' \
--header 'Content-Type: application/json' \
--data-raw '{
"cart_ids": [
1,
2,
3
],
"store_ids": [
1,
2
],
"address_id": 1,
"store_coupon_ids": [
1,
2
]
}'{
"code": 200,
"msg": "操作成功",
"data": {}
}