0
0
Fork 0
DINO_SCRUM/README.md

87 lines
781 B
Markdown
Raw Normal View History

2019-01-10 20:57:47 +01:00
# DINO_SCRUM
2019-01-13 16:49:48 +01:00
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
2019-01-13 17:02:44 +01:00
{
"price-of-all": Float
}
2019-01-13 16:49:48 +01:00
```
----
*POST* **/api/add-product**
```json
{
"name": String,
"price": Float,
"quantity": Int,
"imageLing": String
}
```
Return:
????
----
*DELETE* **/api/delete-product**
```json
{
"id": Int
}
```
Return:
????
----