Hi Team,
I created a zoom meeting using the api /users/{userId}/meetings.
I want to create a meeting and invite the specified emails.
I used the meeting_invitees option to add the desired emails. However, when creating a meeting, those emails are not added.
I tried using the zoom app and creating a schedule meeting, the app allows adding emails to the meeting.
Here is the request body I used:
{
"topic": "My Meeting",
"type": 2,
"agenda": "My Meeting 5",
"default_password": false,
"duration": 60,
"password": "123456",
"pre_schedule": false,
"start_time": "2024-08-13T16:32:55Z",
"template_id": "Dv4YdINdTk+Z5RToadh5ug==",
"setting": {
"meeting_authentication": false,
"calendar_type": 2,
"mute_upon_entry": true,
"join_before_host": true,
"approval_type": 1,
"registration_type": 1,
"meeting_invitees": [
{
"email": "testzoom01@gmail.com"
}
]
}
}
Please let me know how can I add any email to the meeting using the /users/{userId}/meetings api