curl --location --request POST 'https://fullers.flamesware.com/api/api/v1/customer/wishlist/check' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"items": [
{
"item_type": "product",
"item_id": 1
},
{
"item_type": "deal",
"item_id": 2
},
{
"item_type": "restaurant",
"item_id": 1
}
]
}'
{}