Authorization: Bearer ********************
{
"merchant_id": "2309271227337871097",
"contact": "95125060",
"deliveryDate": "2025-09-12 17:50",
"guests": 2,
"name": "Bat",
"amount": 5000,
"isCorp": true,
"corp_id": "64101503362"
}
curl --location --request POST '/api/order/createOrder' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"merchant_id": "2309271227337871097",
"contact": "95125060",
"deliveryDate": "2025-09-12 17:50",
"guests": 2,
"name": "Bat",
"amount": 5000,
"isCorp": true,
"corp_id": "64101503362"
}'
{
"Success": true,
"Message": null,
"ErrorCode": null,
"ExceptionType": null,
"Data": {
"status": "SUCCESS",
"message": "Order created successfully",
"order_id": "2509160923267899887"
}
}