E-Commerce
E-Commerce is store consisting of various products that can showcased and sold ONLINE to the customers! It consists of features such as product-listing, cart, wishlist etc. similar to standard E-Commerce Apps (such as Amazon).
Auth Routes#
In E-Commerce App, the authentication is done with email and password credential fields.
You can refer documentation related to Authentication here
Products Routes#
The following Routes are relating to Products. These are Publicly accessible routes.
1. GET /api/products#
Request URL:
/api/productsHTTP Method: GET
Response Body:
{ data: { products: Array; }}Functionality: This API call gets all products from the db.
2. GET /api/products/:productId#
Request URL:
/api/products/:productIdHTTP Method: GET
Response Body:
{ data: { product: Object; }}Functionality: This API call gets product by productId from the db.
Category Routes#
The following Routes are relating to Categories. These are Publicly accessible routes.
1. GET /api/categories#
Request URL:
/api/categoriesHTTP Method: GET
Response Body:
{ data: { categories: Array; }}Functionality: This API call gets all categories from the db.
2. GET /api/categories/:categoryId#
Request URL:
/api/categories/:categoryIdHTTP Method: GET
Response Body:
{ data: { category: Object; }}Functionality: This API call gets category by categoryId from the db.
Cart Routes#
The following Routes are relating to User's Cart. These are private routes.
1. GET /api/user/cart#
Request URL:
/api/user/cartHTTP Method: GET
Request Headers:
authorization: encodedTokenResponse Body:
{ data: { cart: Array; }}Functionality: This API call gets all items of the cart from the db.
2. POST /api/user/cart#
Request URL:
/api/user/cartHTTP Method: POST
Request Headers:
authorization: encodedTokenRequest Body:
{ product;}Response Body:
{ data: { cart: Array; }}Functionality: This API call adds a new item to the cart of the user in the db.
3. DELETE /api/user/cart/:productId#
Request URL:
/api/user/cart/:productIdHTTP Method: DELETE
Request Headers:
authorization: encodedTokenResponse Body:
{ data: { cart: Array; }}Functionality: This API call removes an item from the cart of the user in the db.
4. POST /api/user/cart/:productId#
Request URL:
/api/user/cart/:productIdHTTP Method: POST
Request Headers:
authorization: encodedTokenRequest Body:
{ action: { type: "increment | decrement"; }}Response Body:
{ data: { cart: Array; }}Functionality: This API call updates an existing cart item quantity for the user in the db.
Wishlist Routes#
The following Routes are relating to User's Wishlist. These are private routes.
1. GET /api/user/wishlist#
Request URL:
/api/user/wishlistHTTP Method: GET
Request Headers:
authorization: encodedTokenResponse Body:
{ data: { wishlist: Array; }}Functionality: This API call gets all items of the wishlist from the db.
2. POST /api/user/wishlist#
Request URL:
/api/user/wishlistHTTP Method: POST
Request Headers:
authorization: encodedTokenRequest Body:
{ product;}Response Body:
{ data: { wishlist: Array; }}Functionality: This API call adds a product to the wishlist of the user in the db.
3. DELETE /api/user/wishlist/:productId#
Request URL:
/api/user/wishlist/:productIdHTTP Method: DELETE
Request Headers:
authorization: encodedTokenResponse Body:
{ data: { wishlist: Array; }}Functionality: This API call removes a product from the wishlist of the user in the db.