Added endpoint list to readme.md
This commit is contained in:
parent
e058f5cef9
commit
b6ca8853a8
83
README.md
83
README.md
@ -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:
|
||||
|
||||
????
|
||||
|
||||
----
|
||||
|
Loading…
Reference in New Issue
Block a user