How will I know if my appointment is face-to-face? Currently, both face-to-face and virtual appointments can be booked by the patient, depending on their preference. These can be booked online or over the phone. Anyone who books a face-to-face appointment for the...
You will need to give 48 hours notice minimum of any cancellation, otherwise you will be charged £26. No shows will be charged the full rate of the appointment.
window.addEventListener("message", receiveMessage);
function receiveMessage(e) {
if (typeof e.data !== 'string') return;
if (e.data.search('cliniko-bookings-page:confirmed') > -1) {
var dataLayer = window.dataLayer || (window.dataLayer = []);
dataLayer.push({
'event': 'clinikoBookingCompleted'
});
}
}