beidl message
This commit is contained in:
parent
fc372073f3
commit
85d7162419
28 changed files with 413 additions and 84 deletions
21
http-requests/cart.http
Normal file
21
http-requests/cart.http
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
### add
|
||||
POST {{url}}/cart/add
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"id": 9999999,
|
||||
"cartEntries": [
|
||||
{
|
||||
"id": 2,
|
||||
"amount": 20
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
### list
|
||||
GET {{url}}/user/signin
|
||||
|
||||
|
||||
### checkout
|
||||
GET {{url}}/user/update
|
||||
Authorization: Bearer {{token}}
|
||||
Reference in a new issue