@baseUrl = https://api.example.com

### Create an order with a JSON body
POST {{baseUrl}}/orders
Accept: application/json
Content-Type: application/json

{
  "customerId": 42,
  "items": [
    {
      "sku": "KARVE-001",
      "quantity": 1
    }
  ],
  "notes": "Leave at reception"
}
