v1
latestOpenAPI 3.0.32026-07-2632131.4 MBReservations Open Api [Beta]
Create a Reservation Without a Quote
Create a reservation without needing a quote. When the listing doesn't have an active rate plan assigned, a default rate plan is selected. Otherwise, the first active rate plan is selected.
post/reservations-v3
Request body
Example request
{
"checkInDateLocalized": "2024-01-01",
"checkOutDateLocalized": "2024-01-02",
"listingId": "5f92cbf10cf217478ba93561",
"source": "manual",
"status": "confirmed",
"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"
}
},
"guestsCount": 2,
"numberOfGuests": {
"numberOfAdults": 2,
"numberOfChildren": 0,
"numberOfInfants": 0,
"numberOfPets": 0
},
"couponCode": "OOM20-DISCOUNT",
"ratePlanId": "5f92cbf10cf217478ba93561",
"accommodationFare": 250,
"cleaningFee": 250,
"ignoreCalendar": true,
"ignoreTerms": true,
"ignoreBlocks": true,
"confirmedAt": "2024-07-06T09:12:06.574Z",
"bookingDate": "2024-07-06T09:12:06.574Z",
"reservedUntil": 36,
"origin": "YourPorter",
"originId": "external-id-example"
}Response
Success
Example response
{
"numberOfGuests": {
"numberOfChildren": 1,
"numberOfInfants": 1,
"numberOfPets": 1,
"numberOfAdults": 1
}
}