0
0
Fork 0

Added endpoint list to readme.md

This commit is contained in:
Konrad Pierzyński 2019-01-13 16:49:48 +01:00
parent e058f5cef9
commit b6ca8853a8
1 changed files with 82 additions and 1 deletions

View File

@ -1,3 +1,84 @@
# DINO_SCRUM
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:
????
----