Please enable JavaScript.
Coggle requires JavaScript to display documents.
Sell Products Backend - Coggle Diagram
Sell Products Backend
Routes
Authentication
Signup-post
Signin-post
signout-get
User
read-get
update-put
parameterExtractor-params :star:
purchaseList-get
Orders
/order/create/:userId POST (create)
orderById PARAMS :star:
/order/list/:userId GET
/order/status/:userid GET
/order/:orderId/status/:userId PUT
Category
/category/create/:userId POST (create)
categoryId PARAM :star: (parameter Extractor)
/category/:categoryId GET (read)
/category/:categoryId/:userId PUT (update)
/category/:categoryId/:userId DELETE (remove)
/category GET (all)
Payment System
Products
Controllers
Payment
Order
create
getOrderStatus
listOrder
updateOrderStatus
orderById :!!:
Category
create
read
update
remove
getAll
categoryById :star:
User
getUserById :star:
read
update
userpurchaselist
pushOrderPurchaseList
Auth
SignUp
SignIn
SignOut
isAdmin :!!:
isSignedin :!!:
isAuthenticated :!!:
Product
create
read
update
remove
listcategories
photo :!!:
maintainStock :!!:
getProductById :!!:
list :question:
Models
User
Products
Category
Orders