UpdateMeeting API end_date_time format with milliseconds

Description
I need a confirmation that updateMeeting API does/does not support date time format with milliseconds.

Today I noticed when I am using updateMeeting API to update a recurrence meeting’s end date, it does not work. After an investigation, i fount out that we are using date format “2020-06-28T23:30:00.000Z” for end_date_time field inside recurrence info, which includes the milliseconds.

After I manually removed milliseconds, the request updated meeting end time successfully.

Error
API call will success with response 204 but does not update the end date as expected.

Which Endpoint/s?
Knowing the API endpoint/s can help us to identify your issue faster. Please link the ones you need help/have a question with.

Additional context
The body of the call:

{
“topic”: “postman-updatedNewSeries”,
“type”: 8,
“start_time”: “2020-06-23T22:25:00.000Z”,
“duration”: 30,
“timezone”: “UTC”,
“password”: “s7HvRk31”,
“agenda”: “Mpostman-updatedNewSeries”,
“recurrence”: {
“end_date_time”: “2020-06-29T22:25:000Z”,
“repeat_interval”: 1,
“type”: 1
},
“settings”: {
“host_video”: true,
“in_meeting”: false,
“join_before_host”: true,
“mute_upon_entry”: false,
“participant_video”: true,
“registrants_confirmation_email”: true,
“use_pmi”: false,
“waiting_room”: false,
“watermark”: false,
“approval_type”: 2
}
}

Hey @Wenbo,

None of our time formats in the API support sending milliseconds. Here is the correct template:

YYYY-MM-DDTHH:MM:SSZ

Thanks,
Tommy