Description
I’m trying to schedule a Meeting and everything works but the meeting doesn’t show up in https://us02web.zoom.us/meeting#/upcoming.
Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT
Which Endpoint/s?
https://api.zoom.us/v2/users/me/meetings
How To Reproduce (If applicable)
I send this JSON;
{
"topic": "test",
"type": 2,
"start_time": 2021-08-09T21:45:00,
"duration": 120,
"timezone": "Europe/Berlin",
"password": "n42@2ndoa9",
"settings": {"host_video": "False",
"participant_video": "False",
"join_before_host": "true",
"jbh_time": "0",
"waiting_room": "false",
"mute_upon_entry": "true"
}
}
And it creates the meeting. I get a 201 response with join_url and everything. But it doesn’t show up in https://us02web.zoom.us/meeting#/upcoming. How do I make it show up there?