diff --git a/api/request.http b/api/request.http index 94d3511..f1f13ab 100644 --- a/api/request.http +++ b/api/request.http @@ -7,3 +7,19 @@ content-type: application/json "count": 7 } ] + +### + +POST http://localhost:8090/orders +content-type: application/json + +{ + "name": "Иванов Иван", + "phone": "+7-000-000-00-00", + "items": [ + { + "product_id": 1, + "count": 7 + } + ] +}