0
0
Fork 0
DINO_SCRUM/README.md

85 lines
757 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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:
????
----