v1
latestOpenAPI 3.0.32026-07-2632131.4 MBReservations Open Api [Beta]
Create a reservation from quote
Create a reservation based on an existing quote with all the necessary reservation data. You can create a quote using the dedicated endpoint or the booking engine API.
post/reservations-v3/quote
Request body
Example request
{
"quoteId": "6213b03e7f0ba50032296f4a",
"status": "confirmed",
"ratePlanId": "5f92cbf10cf217478ba93561",
"guestId": "5f92cbf10cf217478ba93532",
"guest": {
"firstName": "Joe",
"lastName": "Black",
"phones": [
"+972-525180054",
"+972-225146062"
],
"email": "guest@email.com",
"address": {
"street": "1000 5th Ave",
"zipCode": "10028",
"city": "New York",
"state": "New York",
"country": "United States",
"countryCode": "US"
}
},
"origin": "YourPorter",
"originId": "external-id-example"
}Response
Success
Example response
{
"numberOfGuests": {
"numberOfChildren": 1,
"numberOfInfants": 1,
"numberOfPets": 1,
"numberOfAdults": 1
}
}