forked from s434786/DINO_SCRUM
757 B
757 B
DINO_SCRUM
DINO_SCRUM
EndPoints
POST /api/change-quantity
{
"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:
Float
POST /api/add-product
{
"name": String,
"price": Float,
"quantity": Int,
"imageLing": String
}
Return:
????
DELETE /api/delete-product
{
"id": Int
}
Return:
????