Skip to content

Kiosk

Some properties employ kiosk solutions that allow guests to self-manage aspects of their stay. Typically, this includes check-in and check-out, but it can extend to walk-in bookings, stay management and all aspects of the guest journey. Functionality can include updating the guest profile, viewing the guest bill and making payments, thus the kiosk category of integration covers a number of use cases. Here we consider the most common use cases, although kiosks need not be limited to these.

Kiosks can be apps running on off-the-shelf devices such as tablets, or they can consist of custom hardware, incorporating devices such as key encoders, printers and passport scanners. If such devices are integrated into the kiosk, then only one integration is made between the kiosk and Mews, the connections with the devices are handled internally by the kiosk.

To help configure your kiosk for a specific property, perform an initial pull of configuration data, including supported currencies and the default language code. To offer multiple languages, you can retrieve the list of languages supported by the API. You will want to fetch the list of supported guest services and associated products, as properties can configure additional services as well as the default Stay accommodation service.

‘How to’ use case
API Operations
How to get property configurationGet configuration
How to get the list of supported languagesGet all languages
How to get the list of services and productsGet all services, Get all products

To look up a guest reservation, use the general-purpose operation Get all reservations and specify the required search filters. To check in a reservation, use Start reservation. Note Mews uses the phrase “start reservation” rather than “check-in”, and “process reservation” rather than “check-out”.

’How to’ use case
API Operations
How to look up a guest reservationGet all reservations
How to check in a guest reservationStart reservation

If the guest doesn’t have a Mews customer profile, you can add one with Add customer. If the guest already has a profile, but the information in it needs updating (e.g. address, passport or driver’s licence), then use Update customer. To relate a guest profile to a specific reservation, use Add reservation companion. Note that “guests” are always referred to as “customers” in the Mews API.

‘How to’ use case
API Operations
How to create a guest profileAdd customer
How to update a guest profileUpdate customer
How to add a guest to a reservationAdd reservation companion

You can fetch a list of revenue and payment items linked to a guest profile, or if there is a bill prepared you can request the guest bill. To split a bill, use the operations to add a new bill and move accounting items between bills. Once a bill is balanced to zero, it can be closed against further change. A PDF version of the bill can be fetched for printing or display purposes.

‘How to’ use case
API Operations
How to get the guest billGet all bills
How to get a printable billGet bill PDF
How to get the list of open revenue items for a guestGet customer open items
How to create a new billAdd bill
How to move bill items to a new billUpdate accounting items
How to close a bill against changeClose bill

At the end of the reservation, Mews payment automation may have been enacted, so before taking payment from a guest to settle a bill, confirm the outstanding balance as described above.

Once you have confirmed the outstanding balance, you have three options for handling customer payments to settle the bill:

You can make payments using Mews Payments, which uses an online payment gateway. If the guest has a credit card on file, you can charge the card — just specify the card and the amount. The payment will be taken by Mews and recorded on the guest bill. If the guest doesn’t have a credit card on file, you can add one to their profile. You can also see what cards are registered against a guest profile.

‘How to’ use case
API Operations
How to charge a guest credit card using Mews PaymentsCharge credit card
How to add a credit card to the guest profileAdd tokenized credit card
How to get details of stored credit cardsGet all credit cards

You can take an external payment from a guest using a payment terminal, i.e. outside of Mews. In this case, the payment just needs to be recorded against the guest bill. To record the payment, use the appropriate external payment operation.

‘How to’ use case
API Operations
How to record an external card paymentAdd credit card payment
How to record a general external paymentAdd external payment
How to record an alternative external paymentAdd alternative payment
  • Use Add credit card payment for a card payment specifically — specify the amount, the credit card details (including obfuscated number) and the customer identifier.
  • Use Add external payment for a general payment of any type — specify the amount, the type of payment (e.g. cash) and the customer identifier.
  • Use Add alternative payment for supported alternative payment types, such as “Ideal” — specify the amount, the method of payment, the customer identifier, and any special requirements for that payment type.

We also support the option to connect to Mews payment terminals, for which see our detailed use case Mews Payment Terminals.

Once the bill is settled, the guest can be checked-out. Note Mews uses the phrase “process reservation” rather than “check-out”, and “customer” rather than “guest”.

’How to’ use case
API Operations
How to check out a guest reservationProcess reservation

A number of API operations are available to support modifications to reservations. Update reservations offers the widest range of fields to update simultaneously for a specified reservation, e.g. adult count, assigned resource, company, rate. You can remove a companion (i.e. an additional guest) from a reservation using Delete reservation companion, or change the primary guest or owner of the reservation with Update reservation customer. To add additional products to a reservation, use Add reservation product. To modify only the start and/or end of the reservation, use Update reservation interval.

Products from additional services that may not be configured in Mews can be posted to the guest profile using Add order. If using Item parameters, it is highly recommended to specify the accounting category that the posting belongs to, for the sake of financial reporting. The list of accounting categories configured at a property is obtained using Get all accounting categories.

When using Add order, specify parameter LinkedReservationId in order to link the order to a guest reservation. This will greatly assist the property when using billing automation.

‘How to’ use case
API Operations
How to update the details of a reservationUpdate reservations
How to remove an additional guest from a reservationDelete reservation companion
How to change the reservation ownerUpdate reservation customer
How to add a product to a reservationAdd reservation product
How to modify the date or time of a reservationUpdate reservation interval
How to post an order for a guestAdd order
How to link an order to a reservationAdd order (use LinkedReservationId)
How to get the list of accounting categoriesGet all accounting categories

This section is relevant if your kiosk allows guests to create new reservations, rather than simply fetching existing reservations. The API supports operations to facilitate the process, but consider also looking at the Mews Booking Engine API which is optimized for this task.

Use Get all resources to map out the physical configuration of the property. This will give you the names and descriptions of different resource categories, including room types.

Use Get service availability to fetch availability. This availability does not consider resource blocks temporarily taken out of service, so you will also want to use Get all resource blocks to get this information.

Use Get all rates to retrieve all the rates configured at the property, and Get rate pricing to request the related prices for specified dates and times. Rate packages apply rules to automatically post specified products when certain rates are selected. Use Get all rules to get the full list of rate rules.

To calculate the price of a reservation with specific parameters, i.e. obtain a specific quotation, use Price reservations. This can be used, for example, during check-in or check-out to get the new price of a reservation if you select a different resource category or room type, or to check if a selected or pre-booked product should have its price included or not.

Finally, to make a new booking for the guest, use Add reservations. Note you will need to specify the unique customer identifier for the guest profile (see Working with guest profiles above).

’How to’ use case
API Operations
How to get resource categories (room types)Get all resources
How to get availabilityGet service availability
How to get resource blocks (out of order, etc.)Get all resource blocks
How to get configured ratesGet all rates
How to get rate pricingGet rate pricing
How to price a specific reservationPrice reservations
How to get rate package rulesGet all rules
How to make a new bookingAdd reservations

Ensure you follow our general Usage guidelines for testing integrations. For additional help when working with the demo environment, there is a range of helpful articles in the Mews Help Center, including Understanding services. These are available in a number of languages.