I am creating a scheduled meeting using the Zoom API (/users/me/meetings). I have included the start_time
and timezone
in the request. The Zoom API will set the current time if the start_time
is not greater than UTC + the specified timezone.
For example:
Example 1 (incorrect):
- Current time: 2023-10-12T16:12:00
- Request body: {“topic”:“Test Time”,“type”:2,“start_time”:“2023-10-12T17:00:00”,“duration”:30,“timezone”:“Europe/Belgrade”}
- API returns a created meeting with a
start_time
of 02:12 PM - 02:42 PM
Example 2 (correct):
- Current time: 2023-10-12T16:12:00
- Request body: {“topic”:“Test Time”,“type”:2,“start_time”:“2023-10-12T19:00:00”,“duration”:30,“timezone”:“Europe/Belgrade”}
- API returns a created meeting with a
start_time
of 05:00 PM - 05:30 PM
In short if start_time is of 2 hours in future it is not working correctly and if start_time is any date in future it is working fine.
Could you please look into this as soon as possible?
Thanks.