/v1/orders
AuthenticationRequired
Send the authentication headers with every request.
curl https://api.yumzip.in/v1/orders \
-H 'Authorization: Bearer YOUR_MERCHANT_API_KEY' \
-H 'Accept: application/json'
{
"status": "success",
"data": [
{
"order_number": "YZ-98234",
"customer_name": "Rahul Sharma",
"total": 450.00,
"order_status": "Pending",
"items": [
{ "name": "Paneer Butter Masala", "qty": 1, "price": 280.00 },
{ "name": "Butter Naan", "qty": 2, "price": 85.00 }
]
}
]
}