- Customer-API
- Order-API
- Restaurant-API
GET http://0.0.0.0:5001/burgerzilla/v1/customers
GET http://0.0.0.0:5001/burgerzilla-customer/1.0.0/orders?customer-id=1
Reference to routes.py
GET localhost:5002/burgerzilla-order/1.0.0/orders?customer-id
GET localhost:5002/burgerzilla-order/1.0.0/order?customer-id&order-id
POST http://0.0.0.0:5001/burgerzilla-order/1.0.0/order
Form data
{
"o-id":[
{
"o-d-id":1,
"o-id":32,
"p-id":1,
"o-quantity":2,
"order-price":2
},
{
"o-d-id":1,
"o-id":1,
"p-id":1,
"o-quantity":2,
"order-price":2
},
{
"o-d-id":1,
"o-id":1,
"p-id":1,
"o-quantity":2,
"order-price":2
}
],
"c-id": 1,
"o-address": "Metro City",
"o-city": "2016",
"o-postal-code": "12",
"o-status":"OK",
"o-phone-number":"123456",
"o-date":"12/02/02"
}