aboutsummaryrefslogtreecommitdiff
path: root/posting/.order-service/orders-post.posting.yaml
blob: 1249fe3d2c403c15945875095280397dfb67d86c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: orders-post
method: POST
url: http://127.0.0.1:8000/api/v1/orders/
body:
  content: |-
    {
           "customer_id": 42,
           "items": [
             {
               "product_id": 101,
               "quantity": 2,
               "price": 299.99
             },
             {
               "product_id": 102,
               "quantity": 1,
               "price": 49.50
             }
           ]
         }
  content_type: application/json
headers:
- name: Content-Type
  value: application/json