POST /meetings GMT times treated as local times?

Description
Hello. I’m trying to create a meeting using a UTC time, with the ‘Z’ ending. But it appears to be treated the same as a local time, without the ‘Z’ ending. In fact, removing the Z and posting again results in the exact same time under My Meetings in Zoom.

Error
The full error message or issue you are running into.

Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAUTH.

Which Endpoint/s?
https://api.zoom.us/v2/users/me/meetings

How To Reproduce (If applicable)
Take 1
{
“topic”: “take 1 (with Z)”,
“agenda”: “test agenda”,
“start_time”: “2020-04-23T17:30:00.000Z”,
“duration”: 3600,
“type”: 2
}

Take 2
{
“topic”: “take 2 (without Z)”,
“agenda”: “test agenda”,
“start_time”: “2020-04-23T17:30:00.000”,
“duration”: 3600,
“type”: 2
}

Screenshots (If applicable)

It looks like I can answer my own question. If you have microseconds in the start time, the Z doesn’t get recognised and it’s treated like a local time.

Hey @leap-automation,

Correct, please do not include milliseconds.

2020-04-23T17:30:00Z

Thanks,
Tommy