Booking
Creates a booking for one or more reservations.
Creates a booking taking a list of reservations as input.<br>You must have at least one of these scopes: 'reservations.create, reservations.manage'.
post/booking/v1/bookings
Headers
Idempotency-Keystring
Unique key for safely retrying requests without accidentally performing the same operation twice. We'll always send back the same response for requests made with the same key, and keys can't be reused with different request parameters. Keys expire after 24 hours.
Request body
Example request
{
"paymentAccount": {
"accountNumber": "1111",
"accountHolder": "John Doe",
"expiryMonth": "8",
"expiryYear": "2018",
"paymentMethod": "visa",
"payerEmail": "s.hopper@test.com",
"payerReference": "4ea6462b-cca3-4c17-a035-c7b5132db83c",
"isVirtual": false
},
"booker": {
"title": "Mr",
"gender": "Male",
"firstName": "Jon",
"middleInitial": "D",
"lastName": "Doe",
"email": "john.d@doe.com",
"phone": "+4989123343",
"address": {
"addressLine1": "My Street 1",
"postalCode": "12453",
"city": "MyCity",
"countryCode": "GB"
}
},
"reservations": [
{
"arrival": "2026-09-03",
"departure": "2026-09-05",
"adults": 1,
"childrenAges": [
6
],
"guestComment": "I need a wake up service",
"channelCode": "Direct",
"primaryGuest": {
"title": "Mr",
"gender": "Male",
"firstName": "Jon",
"middleInitial": "D",
"lastName": "Doe",
"email": "john.d@doe.com",
"phone": "+4989123343",
"address": {
"addressLine1": "My Street 1",
"postalCode": "12453",
"city": "MyCity",
"countryCode": "GB"
},
"vehicleRegistration": {
"number": "APA322",
"countryCode": "DE"
}
},
"guaranteeType": "Prepayment",
"travelPurpose": "Business",
"timeSlices": [
{
"ratePlanId": "MUC-NONREF-FAMILY"
},
{
"ratePlanId": "MUC-NONREF-FAMILY"
}
],
"services": [
{
"serviceId": "MUC-BRKF"
},
{
"serviceId": "MUC-YOGA",
"dates": [
{
"serviceDate": "2026-09-04",
"amount": {
"amount": 35,
"currency": "EUR"
}
}
]
}
],
"prePaymentAmount": {
"amount": 50,
"currency": "EUR"
},
"externalReferences": {
"globalDistributionSystemId": "A2PA6WHY",
"onlineTravelAgencyId": "5247241379",
"onlineBookingToolId": "APA_HQL-C26181420|WAW-MUN-BC2-1U1",
"channelManagerId": "123295310",
"centralReservationSystemId": "91200088"
}
},
{
"arrival": "2026-09-04",
"departure": "2026-09-06",
"adults": 1,
"childrenAges": [
6
],
"channelCode": "Direct",
"primaryGuest": {
"title": "Mr",
"gender": "Male",
"firstName": "Eric",
"middleInitial": "E",
"lastName": "Steinmetz",
"email": "eric.e@steinmetz.com",
"phone": "+4989123343",
"address": {
"addressLine1": "My Street 1",
"postalCode": "12453",
"city": "MyCity",
"countryCode": "GB"
},
"vehicleRegistration": {
"number": "APA322",
"countryCode": "DE"
}
},
"guaranteeType": "CreditCard",
"timeSlices": [
{
"ratePlanId": "BER-FLEX-DBL",
"totalAmount": {
"amount": 120,
"currency": "EUR"
}
},
{
"ratePlanId": "BER-FLEX-DBL",
"totalAmount": {
"amount": 125,
"currency": "EUR"
}
}
],
"companyId": "BER-UMBRELLA",
"commission": {
"commissionAmount": {
"amount": 20,
"currency": "EUR"
},
"beforeCommissionAmount": {
"amount": 100,
"currency": "EUR"
}
},
"externalReferences": {
"globalDistributionSystemId": "A2PA6WHY",
"onlineTravelAgencyId": "5247241379",
"onlineBookingToolId": "APA_HQL-C26181420|WAW-MUN-BC2-1U1",
"channelManagerId": "123295310",
"centralReservationSystemId": "91200088"
}
}
],
"transactionReference": "564578124534890J"
}Response
All new reservations were created.
Example response
{
"id": "XPGMSXGF",
"reservationIds": [
{
"id": "XPGMSXGF-1"
},
{
"id": "XPGMSXGF-2"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.