POST /api/orders

POST /api/orders

Body

Responses

curl \
 --request POST 'https://org-bay.runasp.net/api/orders' \
 --header "Content-Type: application/json" \
 --data '{"nationalityId":42,"cruiseId":42,"tourGuideId":42,"orderItems":[{"ticketId":42,"price":42.0}]}'
curl \
 --request POST 'https://org-bay.runasp.net/api/orders' \
 --header "Content-Type: text/json"
curl \
 --request POST 'https://org-bay.runasp.net/api/orders' \
 --header "Content-Type: application/*+json"
Request examples
{
  "nationalityId": 42,
  "cruiseId": 42,
  "tourGuideId": 42,
  "orderItems": [
    {
      "ticketId": 42,
      "price": 42.0
    }
  ]
}