generated from fraktalio/fmodel-spring-demo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.http
43 lines (36 loc) · 889 Bytes
/
test.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
### Register/Create new restaurant
POST http://localhost:8080/restaurants
Content-Type: application/json
{
"identifier": "3ac06cc7-0b59-436e-8c54-576f3cca01a9",
"name": "ce-vap",
"menu": {
"menuItems": [
{
"menuItemId": "item1",
"name": "menuItemName",
"price": "10"
}
],
"menuId": "af273f6c-0702-450c-9d44-34913e248376",
"cuisine": "GENERAL"
}
}
### Place order
POST http://localhost:8080/restaurants/3ac06cc7-0b59-436e-8c54-576f3cca01a9/orders
Content-Type: application/json
{
"identifier": "3ac06cc7-0b59-436e-8c54-576f3cca01a9",
"orderIdentifier": "4ac06cc7-0b59-436e-8c54-576f3cca01a9",
"lineItems": [
{
"menuItemId": "item1",
"name": "menuItemName",
"quantity": "2",
"id": "1"
}
]
}
### Get all restaurants
GET http://localhost:8080/restaurants
Content-Type: application/json