From 323f50fb43b40814a71751b58d1af8f76a051cc2 Mon Sep 17 00:00:00 2001 From: Fedorov Vladimir Date: Thu, 30 May 2024 03:34:04 +0700 Subject: [PATCH] update request.http --- api/request.http | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 + } + ] +}