# DINO_SCRUM DINO_SCRUM ## EndPoints *POST* **/api/change-quantity** ```json { "id": Int, "change": Int } ``` Return: ??? ---- *GET* **/api/get-all** Return: ``` {     [     {      "id": Int,            "name": String,            "price": Float,            "quantity": Int,             "imageLink": String     },     {...}     ] } ``` ---- *GET* **/api/get-price-of-all** Return: ```json Float ``` ---- *POST* **/api/add-product** ```json { "name": String, "price": Float, "quantity": Int, "imageLing": String } ``` Return: ???? ---- *DELETE* **/api/delete-product** ```json { "id": Int } ``` Return: ???? ----