/fashion

Primary LanguageJavaScript

**baseURL : **

Landing page data endpoint

  1. Ex:
  • `${baseURL}/?occasion=dresses`
    

Only Seller collection

  1. shivangini collection
  •     `${baseURL}/occasion/seller/shivangini`
    
  1. ankita collection
  •     `${baseURL}/occasion/seller/ankita`
    
  1. nikky collection
  •     `${baseURL}/occasion/seller/nikky`
    

products page endpoint

  1. mens collection
  •     `${baseURL}/products/mens`
    
  1. womens collection
  •     `${baseURL}/products/womens`
    

products page sorting endpoint

  1. mens collection filter by brand
  •     `${baseURL}/products/mens?brand=<brand name>`
    
  1. womens collection filter by brand
  •     `${baseURL}/products/womens?brand=<brand name>`
    
  1. mens collection filter by offers
  •     `${baseURL}/products/mens?offers=<offer>`
    
  1. womens collection filter by offers
  •     `${baseURL}/products/womens?offers=<offer>`
    
  1. mens collection filter by price ascending order
  •     `${baseURL}/products/mens?price=asc`
    
  1. womens collection filter by price desc order
  •     `${baseURL}/products/womens?price=desc`
    
  1. mens collection filter by discount
  •     `${baseURL}/products/mens?discount=<discount number>`
    
  1. womens collection filter by discount
  •     `${baseURL}/products/womens?discount=<discount number>`
    

products page product add endpoint

  • `${baseURL}/products/addProduct`
    

products page product update endpoint

  • `${baseURL}/products/updateProduct/:id`
    

products page product delete endpoint

  • `${baseURL}/products/deleteProduct/:id`