beidl message

This commit is contained in:
Jonas Weissengruber 2023-12-20 00:41:20 +01:00
parent fc372073f3
commit 85d7162419
28 changed files with 413 additions and 84 deletions

21
http-requests/cart.http Normal file
View 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}}