Booking
Reserving availability and making a booking
The steps to making a booking are as follows:
- 1.Check Availability Check the availability in the previous section and retrieve an availability ID.
- 2.Booking Reservation Create a booking that reserves the availability while you collect payment and contact information from the customer.
- 3.Booking Confirmation The final step, once payment has been taken and you want to finalize the booking.
post
https://octo.peek.com/integrations/octo
/bookings
Booking Reservation
The request above was made with the following request body:
{
"productId": "av_123",
"optionId": "av_123",
"availabilityId": "20200701143000_720_5214a9d6-5271-4958-a306-14a07e4084c6",
"notes": "Optional notes for the booking",
"unitItems": [
{ "unitId": "ecbdb23e-9840-4d15-b6f4-254a9ea401b2" },
{ "unitId": "ecbdb23e-9840-4d15-b6f4-254a9ea401b2" },
{ "unitId": "480d0c3e-80a1-4bf2-a39b-aa06332739df" }
]
}
The UUID on the request body and on each unit is optional but recommended if you're requesting from a source of poor network connectivity. If the connection fails or you do not receive a response, you can repeat the same request with the same UUID and it will respond with the same booking object without duplicating the booking.
The booking object is described as:
Field | Description |
---|---|
uuid | A unique UUID used to identify booking. Make sure you save this value as you will need it to perform any future actions against this booking. |
testMode | Whether this booking is in test mode. |
resellerReference | Your reference (as the reseller). You set this value in the second confirmation request |
supplierReference | The Peek Pro reference for this booking. Use this to help the supplier find this booking. |
status | The status of the booking, possible values are: ON_HOLD The booking is pending confirmation, this is the default value when you first create the booking.EXPIRED If the booking is not confirmed before the expiration hold expires, it goes into an expired state. CONFIRMED Once the confirmation call is made the booking is ready to be used. CANCELLED If the booking is cancelled. |
utcExpiresAt | An ISO8601 date time in UTC for when this booking is due to expire if the status is ON_HOLD |
utcConfirmedAt | An ISO8601 date time in UTC when the booking was confirmed. |
productId | The product ID for this booking |
optionId | The option ID for this booking |
cancellable | A boolean field indicating whether this booking can be cancelled. |
cancellation | An object with information about why and when the booking was cancelled. This is null if the booking is not cancelled. |
freesale | Whether the booking was made as freesale (without checking availability first). |
notes | Public notes on the booking. |
cancellation.reason | A text value describing why the cancellation happened. |
cancellation.refund | Whether the booking was refunded as part of the cancellation. Possible values are FULL , PARTIAL or NONE |
cancellation.utcCancelledAt | An ISO8601 date time in UTC indicating when the booking was cancelled. |
availability | The availability object that was booked. |
availability.id | The availability id that was used in the request. |
availability.localDateTimeStart | The localDateTimeStart value from the original availability object. |
availability.localDateTimeEnd | The localDateTimeEnd value from the original availability object. |
availability.allDay | A boolean value indicating whether the availability is all day. |
availability.openingHours | The opening hours from the original availability object. |
contact | The customer contact details. These values are set in the booking confirmation step. |
contact.fullName | The full name of the guest |
contact.emailAddress
| The email of the guest |
contact.phoneNumber | The phone number of the guest |
contact.locales | An array of locale values, equivalent to navigator.languages in a browsers environment. |
deliveryMethods | An array of delivery methods available for this booking. Possible values are: VOUCHER The voucher object is populated which is a single ticket for the whole booking.TICKET The ticket object is populated on each unit item which is a ticket for each individual person. |
voucher | This value will be set if deliveryMethods array has VOUCHER as one of the values. |
voucher.redemptionMethod | How the voucher can be redeemed. Possible values are: MANIFEST The guest name will be written down and they just need to show upDIGITAL The tickets/voucher must be scanned but can be on mobilePRINT The tickets/voucher must be printed and presented on arrival |
voucher.utcRdeemedAt | The ISO8601 date in UTC indicating when the voucher was used at the attraction. |
voucher.deliveryOptions | This is an array of delivery options for the voucher each object. You should use one of these to give the tickets to the guest. |
voucher.deliveryOptions[].deliveryFormat | The format for the delivery option possible values are: QRCODE You should generate the QR Code yourself on a ticket.PDF_URL Where you use the Peek Pro generated tickets as a PDF. |
voucher.deliveryOptions[].deliveryValue | Depending on the value of deliveryFormat this value is either:QRCODE This value is a string to encode in a QR Code.PDF_URL This value is a URL linking to a ventrata generated voucher PDF. |
unitItems | This is an array of unit items generated when making the booking. |
unitItems[].uuid | A unique UUID per unit item that you can use to help track it. |
unitItems[].resellerReference | Your reference (as a reseller) for this unit item. |
unitItems[].supplierReference | The Peek Pro reference for this unit item. |
unitItems[].unitId | The unit id used for this unit item |
unitItems[].ticket | If deliveryMethods has TICKET as one of its values this object will be set. The data structure will be identical to the voucher object. |
The booking object schema described above will be returned on every endpoint in this section. Only the values may change.
patch
https://octo.peek.com/integrations/octo
/bookings/:uuid
Booking Update
You can update a booking before and after it has been confirmed as long as it hasn't been redeemed or within the cancellation cutoff window. To know if the booking can be updated check the
booking.cancellable
field. If the booking can be cancelled, it can also be updated. It's generally preferred to update a booking rather than cancelling it and rebooking.post
https://octo.peek.com/integrations/octo
/bookings/:uuid/confirm
Booking Confirmation
An example of the confirmation request above looks like this:
{
"resellerReference": "VOUCHER-0123",
"contact": {
"fullName": "Oliver Morgan",
"emailAddress": "[email protected]",
"phoneNumber": "+447840739436"
}
}
Once the booking is confirmed, the delivery options of both the voucher and/or ticket are populated. An example of the values is shown below:
//...inside either "voucher" and/or "ticket"
"redemptionMethod": "DIGITAL",
"utcRedeemedAt": null,
"deliveryOptions": [
{
"deliveryFormat": "QRCODE",
"deliveryValue": "http://short.peek.stack/public-html/app-redirect/booking/b_qw47z/pos/"
}
]
If
booking.deliveryMethods
contains both TICKET and VOUCHER then both those values will be set. You can then offer the guest whether they'd like their tickets per-person (booking.unitItems[].ticket
) or one for the whole booking (booking.voucher
). If you're unable to offer the choice then it's suggested you default to one falling back to the other if that's not available.delete
https://octo.peek.com/integrations/octo
/bookings/:uuid
Booking Cancellation
Note you can only cancel a booking if
booking.cancellable
is true.post
https://octo.peek.com/integrations/octo
/bookings/:uuid/extend
Extend Reservation
get
https://octo.peek.com/integrations/octo
/bookings/:uuid
Get Booking
This endpoint will fetch the booking with the provided UUID from the system.
get
https://octo.peek.com/integrations/octo
/bookings
List Bookings
Last modified 1yr ago