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.

Kiosk devices

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.

Initial configuration

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 configuration

How to get the list of supported languages

How to get the list of services and products

Guest check-in

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 reservation

How to check in a guest reservation

Working with guest profiles

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 profile

How to update a guest profile

How to add a guest to a reservation

Guest bill

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 bill

How to get a printable bill

How to get the list of open revenue items for a guest

How to create a new bill

How to move bill items to a new bill

How to close a bill against change

Payment automation

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.

Taking payments

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

Gateway payments

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 Payments

How to add a credit card to the guest profile

How to get details of stored credit cards

Non-Mews terminal payments

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 payment

How to record a general external payment

How to record an alternative external payment

Adding external payments

  • 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.

Mews terminal payments

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

Guest check-out

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 reservation

Modifying reservations

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.

'How to' use case

API Operations

How to update the details of a reservation

How to remove an additional guest from a reservation

How to change the reservation owner

How to add a product to a reservation

How to modify the date or time of a reservation

How to post an order for a guest

How to get the list of accounting categories

Walk-in bookings

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)

How to get availability

How to get resource blocks (out of order, etc.)

How to get configured rates

How to get rate pricing

How to price a specific reservation

How to get rate package rules

How to make a new booking

Testing your integration

Ensure you follow our general 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.

Last updated