Hello! I have an issue trying to create a recurring meeting through the API.
For example, I want to create a meeting with two recurrences, Starting on 02/14 and finishing on 02/15.
if I send this request it creates the meeting correctly, with 2 recurrences
{
"type":8,
"topic":"TEST ZOOM MEETING",
"timezone":"America/Denver",
"start_time":"2022-02-14T09:30:00",
"recurrence":
{
"weekly_days":"2,3,4,5,6",
"type":2,
"end_date_time":"2022-02-15T17:00:00Z"
},
"duration":450,
"agenda":"test Denver TimeZone"
}
but if I use ‘America/Los_Angeles’ in the TimeZone it creates just one recurrence for 02/14, it is exactly the same request, the only change is the timezone
{
"type":8,
"topic":"TEST ZOOM MEETING",
"timezone":"America/Los_Angeles",
"start_time":"2022-02-14T09:30:00",
"recurrence":
{
"weekly_days":"2,3,4,5,6",
"type":2,
"end_date_time":"2022-02-15T17:00:00Z"
},
"duration":450,
"agenda":"test Los Angeles TimeZone"
}
Can you help me to understand what I’m doing wrong?
Thanks,
Daniel.