API for HomeSlice
HomeSlice Front-End Repository
/api
├── /admin
│ └── DELETE
│ └── /restaurant/restaurant_id
│ └── POST
│ └── /login
|
├── /authorization
│ └── POST /login
|
├── /customers
│ └── GET
│ ├── /
│ └── /:customer_id
│ └── POST
│ └── /
│ └── PATCH
│ └── /:customer_id
│ └── DELETE
│ └── /:customer_id
|
├── /orders
│ └── GET
│ ├── /
│ └── /:order_id
│ └── POST
│ └── /
│ └── PATCH
│ └── /:order_id
│ └── DELETE
│ └── /:order_id
|
├── /pizzas
│ └── GET
│ ├── /
│ └── /:pizza_id
│ └── POST
│ └── /
│ └── PATCH
│ └── /:pizza_id
│ └── DELETE
│ └── /:pizza_id
|
├── /restaurants
│ └── GET
│ ├── /
│ ├── /:restaurant_id
│ └── /:restaurant_id/orders
│ └── POST
│ └── /
│ └── PATCH
│ └── /:restaurant_id
│ └── DELETE
│ └── /:restaurant_id
|
├── /stripe
│ └── POST
│ └── /charge