curl --location -g --request POST 'https://athathi.mgahed.com/api/{{locale}}/orders' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"address_id": 1,
"payment_method": "0", // string; if 0 => cash. 1 => card
"is_fast_delivery": true, // true if you want to apply fast delivary
"items": [
{
"id": 2,
"quantity": 3
},
{
"id": 1,
"quantity": 1
}
]
}'{}