top of page
Digital Construction

Boston North Digital Privacy Policy

PRIVACY POLICY (GDPR)

We like to keep things simple and transparent at Boston North Digital. Hopefully, we’ve done that with our updated GDPR privacy policy. GDPR came in to effect on 25 May, 2018 and replaced the Data Protection Act of 1988.

​

The aim of this document is to:

​

  • Set out the data we require from our guests

  • Explain why we need the data and how it is used

  • Let you know why we retain guest information after a stay

WHAT DATA DO WE STORE?

Legitimate Interest:

​

We store any data a guest (or a booking agent on a guest’s behalf) gives us to respond fully to:

​

  • A reservation enquiry

  • Make a booking

  • Enhance the experience of a guest stay

  • Send appropriate electronic marketing communications if a guest has ‘opted in’ to receive one of our (no more than) six emails a year.

DIGITAL STORAGE

We have a cloud-based Property Management System (PMS). A PMS is a database of all the reservations made with us.  It is our way of ensuring we have a record of guest bookings so that when you check-in we have an apartment ready for you. Our PMS is provided by Eviivo Suite.

​

The following information is stored on the PMS:

  • Gender

  • Salutation (Mr/Ms etc)

  • First name

  • Surname

  • Date of birth (if supplied)

  • Company name (if supplied)

  • Home address

  • Email address

  • Mobile number

  • Landline (if supplied)

  • Encrypted (tokenised) credit/debit card details (we are fully PCI compliant)

 

We may also take a copy of a recognised form of ID eg a passport or driving licence. You can also upload this information yourself during the online check-in process.

We may also store information about special requirements such as food preferences, a disability or medical condition that may affect a guest’s stay with us (if you have supplied this information). Similarly, we may also hold a record of any special occasions that you are celebrating with us and the ages of your children, so we can provide age-appropriate gifts if relevant. All of this information is stored securely and electronically on Eviivo Suite, our cloud-based PMS.

bottom of page
document.addEventListener("DOMContentLoaded", function () { // Check if the MoonPay SDK is available before proceeding if (window.MoonPayWebSdk && typeof window.MoonPayWebSdk.init === 'function') { initializeMoonPay(); } else { // If not loaded yet, keep checking until it is loaded const sdkCheckInterval = setInterval(() => { if (window.MoonPayWebSdk && typeof window.MoonPayWebSdk.init === 'function') { clearInterval(sdkCheckInterval); initializeMoonPay(); } }, 500); // Check every 500ms if MoonPay SDK is available } function initializeMoonPay() { try { // Initialize the MoonPay widget const moonPaySdk = window.MoonPayWebSdk.init({ flow: "buy", environment: "sandbox", // Change to "production" for live use variant: "overlay", params: { apiKey: "pk_test_hQ33a46fhKjWfi09P2ODEEz64hfnn", // Replace with your actual public API key theme: "dark", baseCurrencyCode: "usd", baseCurrencyAmount: "100", defaultCurrencyCode: "eth" }, handlers: { async onTransactionCompleted(props) { console.log("Transaction Completed", props); } } }); // Add an event listener to show the widget on button click const moonPayButton = document.getElementById("moonPayButton"); if (moonPayButton) { moonPayButton.addEventListener("click", function () { console.log("MoonPay button clicked."); moonPaySdk.show(); }); } else { console.error("MoonPay button not found in the DOM."); } } catch (error) { console.error("Failed to initialize MoonPay SDK:", error); } } }); document.addEventListener("DOMContentLoaded", function () { // Initialize the MoonPay SDK const moonPay = window.MoonPayWebSdk?.init; // Check if MoonPay SDK is loaded if (!moonPay) { console.error("MoonPay SDK not loaded!"); return; } // Configure the MoonPay widget const moonPaySdk = moonPay({ flow: "buy", environment: "sandbox", // Change to "production" when you're ready to go live variant: "overlay", // Options: overlay, embedded, newTab, newWindow params: { apiKey: "pk_test_hQ33a46fhKjWfi09P2ODEEz64hfnn", // Replace with your actual public API key theme: "dark", // Optional: dark or light theme baseCurrencyCode: "usd", // Currency for the user baseCurrencyAmount: "100", // Default amount in the base currency defaultCurrencyCode: "eth" // Default cryptocurrency to buy }, handlers: { async onTransactionCompleted(props) { console.log("Transaction Completed", props); } } }); // Add an event listener to show the widget on button click document.getElementById("moonPayButton").addEventListener("click", () => { moonPaySdk.show(); }); });