"Licious is India's largest D2C Unicorn , it's provide the fresh Meat Delivery system and user can see and buy any type of meat category it's branch all over India"
- Mohammad Hassim
- Syed Anwar
- Param Raj
- Ajit Shelake
- Node
- ExpressJS
- MongoDB
- Mongoose
- JWT
- bcrypt
- request-ip
-
Chicken Collection API
- All Category API
- GET REQUEST :
<a>http://localhost:8080/Chicken</a>
- Sub Category API Pass a Query : category_id , sort_by_price
- GET REQUEST : -
<a>http://localhost:8080/Chicken/?category_id&sort_by_price</a>
- Single Product API
- Pass a Param for Single Product
- GET REQUEST :
http://localhost:8080/Chicken/:id
-
Mutton Collection API
- All Category API
- GET REQUEST :
<a>http://localhost:8080/Mutton</a>
- Sub Category API Pass a Query : category_id , sort_by_price
- GET REQUEST : -
<a>http://localhost:8080/Mutton/?category_id&sort_by_price</a>
- Single Product API
- Pass a Param for Single Product
- GET REQUEST :
<a>http://localhost:8080/Mutton/:id</a>
-
Prawns Collection API
- All Category API
- GET REQUEST :
<a>http://localhost:8080/Prawns</a>
- Sub Category API
Pass a Query : category_id , sort_by_price
- GET REQUEST : -
<a>http://localhost:8080/Prawns/?category_id&sort_by_price</a>
- Single Product API
- Pass a Param for Single Product
- GET REQUEST :
<a>http://localhost:8080/Prawns/:id</a>
-
Eggs Collection API
- All Category API
- GET REQUEST :
<a>http://localhost:8080/Eggs</a>
- Sub Category API Pass a Query : category_id , sort_by_price
- GET REQUEST : -
<a>http://localhost:8080/Eggs/?category_id&sort_by_price</a>
- Single Product API
- Pass a Param for Single Product
- GET REQUEST :
<a>http://localhost:8080/Eggs/:id</a>
-
USER SIGNUP
- POST REQUEST :-
user/signup
mandatory
-email , password
- POST REQUEST :-
-
Features : -
Password is encrypted
-
USER LOGIN
- POST REQUEST :-
user/login
mandotory
-email , password
- POST REQUEST :-
-
Features : -
Token Send for Authorization
-
USER DETAIL UPDATE
- PATCH REQUEST : -
user/updatedetail
payload : - {email , password , name , gender , maritalStatus}
- PATCH REQUEST : -
-
POST REQUEST :
When User want to Add the Item in the cart
- Pass the ID as a Params -
/cart:id
- Send the
token
in headers as authorization - UserID already exist beacuse it was a Parent ID
- headers : {
Authorization
:Bearer <token>
}
- Pass the ID as a Params -
-
GET REQUEST :
All Product list data which is added by the User "/cart"
-
DELETE REQUEST :
When User want to Delete the Item in the cart
-
Pass the ID as a Params -
/cart:id
-
Send the
token
in headers as authorization -
UserID already exist beacuse it was a Parent ID - headers : {
Authorization
:Bearer <token>
}
- POST REQUEST :
When User want to Add the Address in our own collection
-
/address
- Send the
token
in headers as authorization - UserID already exist beacuse it was a Parent ID
- headers : {
Authorization
:Bearer <token>
}response send
:User own address not everyone address
-