You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defdate_to_str(d):
"""Convert date and datetime objects to a string Note, this does not do any timezone conversion. :param d: The :class:`datetime.date` or :class:`datetime.datetime` to convert to a string :returns: The string representation of the date """returnd.strftime("%Y-%m-%dT%H:%M:%SZ")
The text was updated successfully, but these errors were encountered:
I think the letter Z needs to be removed since it causes Zoom to default to GMT time and ignore the timezone argument as mention in the documentation for the start_time argument here - https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate
The text was updated successfully, but these errors were encountered: