curl --location --request POST 'https://fullers.flamesware.com/api/api/v1/customer/ratings' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_id": 154,
"food_rating": 5,
"delivery_rating": 4,
"overall_rating": 5,
"review": "Amazing food! The pizza was perfectly cooked and delivered hot. The crust was crispy and toppings were fresh. Delivery was quick and the driver was very polite.",
"liked_items": [
"Margherita Pizza",
"Garlic Bread",
"Caesar Salad"
],
"disliked_items": [],
"would_recommend": true,
"suggestions": "Maybe add more vegetarian options to the menu. Also, it would be great to have gluten-free crust options."
}'