Cleaning Scheduler

const accessToken = '_pt35mENay7WLz23cuGn';

async function fetchReservations() {
const response = await fetch('https://api.bookingsync.com/v3...;, {
headers: {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json'
}
});
if (!response.ok) throw new Error('Network response was not ok');
const reservations = await response.json();
console.log(reservations);
// Update your HTML UI with reservation data here
}

fetchReservations();