I am trying to schedule the meeting using google calendar API.
But, due to the time zone issue, the meetings are scheduled at different timings in different country's time zones.
await calendar1.freebusy.query({ resource: { timeMin: meetingStartTime, timeMax: meetingEndTime, timeZone: countryTimeZone, items: [{ id: email }], }, })
So, How should I handle the different timezones so that the meeting can be scheduled at the same time in different countries.