Giter VIP home page Giter VIP logo

e-commerce's Introduction

e-commerce

Product Docs

Routes Method Headers Request Body Response Data Response Error Description
/products POST token name:String required , price:Number required, description:String required, stock:Number required image:String required {_id ,name , price , description, quantity } 422 (validation error), 500 (internal server error) add product data into database
/products GET token none [{_id ,name , price , quantity }] 404 (Not found), 401 (Unauthorized user), 500 (internal server error) get list of products
/products PATCH token name:String , price:String , description: String, quantity:Integer - 404 (Not found), 401 (Unauthorized user), 500 (internal server error) edit a product base on its id
/products DELETE token - - 404 (Not found), 401 (Unauthorized user), 500 (internal server error) delete a product base on its id

User Docs

Routes Method Headers Request Body Response Data Response Error Description
/users/register POST - firstName:String , lastName:String, email:String, password:String {_id ,firstName , lastName , email, password } 422 (validation error), 500 (internal server error) register user
/users/login POST - email:String, password:String {access_tokeb , user } 422 (validation error), 500 (internal server error) login user

Cart Docs

Routes Method Headers Request Body Response Data Response Error Description
/carts/:userId GET access_token - [{_id, produtId, userId, quantity}] 422 (validation error), 500 (internal server error) get cart based on user
/carts POST access_token productId:ObjectId, userId:userId, quantity:Number [{_id, produtId, userId, quantity}] 422 (validation error), 500 (internal server error) create new cart
/carts/:userId PATCH access_token productId:ObjectId, userId:userId, quantity:Number - 422 (validation error), 500 (internal server error) update an item in cart
/carts/:userId DELETE access_token - - 422 (validation error), 500 (internal server error) delete an item in cart

e-commerce's People

Contributors

aryadi avatar dmtrxw avatar

Stargazers

Sumit Kumar Singh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.