The circle is an assignment using the Django framework in Python and React with Material-UI.
Circle Repo here
GET request to fetch all categories
https://ivehement.herokuapp.com/category
#Response
[{"id": 1, "CategoryName": "Electronics"}, {"id": 2, "CategoryName": "Sports"}]
GET request to fetch all subcategories in a category
https://ivehement.herokuapp.com/category/:id
#Response
[{"id": 1, "SubCategoryName": "Mobile", "category": 1}]
GET request to fetch all products in a category
https://ivehement.herokuapp.com/product/category/:id
#Response
[{"id": 22, "ProductName": "Macbook Pro", "subCategory": 2}]
GET request to fetch all products in a subcategory
https://ivehement.herokuapp.com/product/subcategory/:id
#Response
[{"id": 24, "ProductName": "Redmi Note 3", "subCategory": 1}]
POST request to add a product to the list with category and subcategory.
#Resquest
{
"ProductName": "Macbook Air"
"SubCategory": 2
}
https://ivehement.herokuapp.com/product
#Response
{"Added Succesfully!"}