Scheduled meetings not listed in https://us02web.zoom.us/meeting#/upcoming

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?

Hi @fff,

Are you scheduling the meeting in the future? And are the credentials you’re authorizing your request with associated with the same account you’re checking?

Thanks,
Will

Thanks, I found the problem, but I don’t know how to fix it:
My Code creates the Meeting for the owner of the account, but I want to create it for a different User (who is an Admin) of that same account. How do I specify for which account the meeting should be created?

Hi @fff,

To schedule the meeting under a specific user, you can specify that user’s email or userId directly in the request URL, instead of me — for example:
https://api.zoom.us/v2/users/{userId}/meetings

Thanks!
Will

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.