Time zone - API Request

Hello everyone,
The time zone is configurable to send a request on the API, I mean, For example in the following API https://marketplace.zoom.us/docs/api-reference/zoom-api/dashboards/dashboardmeetings we can configure the parameters from and to, my question is: Can we configure the time zone on these parameters?

I’II really appreciate your help.
Karen Gonzalez.

Hey @itsupport, great question!

The Zoom API treats the timezone as UTC/GMT. UTC/GMT is the standard for server timezones.

Unfortunately you cannot configure the timezone in the request, but you could change the day you pass in based on the UTC offset.

In JavaScript you can get the UTC offset from your local (browser) timezone like this:

new Date().getTimezoneOffset();

Let me know if this helps!

Thanks,
Tommy

1 Like

Thank you for sharing with me this information.

2 Likes

You are welcome!

-Tommy