This repository has been archived on 2026-03-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
aeticket/http-requests/cart.http
Jonas Weissengruber 7dbbdef6c2 pfeifn duats heast
2023-12-20 01:39:34 +01:00

23 lines
No EOL
319 B
HTTP

### add
POST {{url}}/cart/add
Authorization: Bearer {{token}}
Content-Type: application/json
{
"id": 9999999,
"cartEntries": [
{
"id": 3,
"amount": 1
}
]
}
### list
GET {{url}}/cart/list
Authorization: Bearer {{token}}
### checkout
GET {{url}}/cart/checkout
Authorization: Bearer {{token}}