I’m encountering an issue when using the Zoom API to create a meeting for a provider, where I attempt to add a list of DTEN machine emails as meeting invitees. While the meeting is successfully created for the provider, the DTEN machine emails are not receiving invitations, and the machines do not show up the upcoming meetings list.
using the POST /users/{userId}/meetings endpoint to create a meeting
Hi @tejaswi.munnangi
Thanks for reaching out to us and welcome to the Zoom Developer Community!
The “meeting_invitees” field does not trigger an email to the participants you are adding.
I would recommend to set up registration to your meetings, that you can handle on your end and that way the participants will also get an email with the join link attached to their registration
here is my updated code, though I enabled the registration I’m unable to see the meeting under upcoming list. All I want is to add participants into meeting. How to add participants while creating a meeting?
Thank you for reply. I did add the participants using registrants api and still can’t see the meeting under the upcoming meetings
// Creating the JSON body add meeting participant
var jsonBody = new JObject
{
{ “first_name”, name },
{ “last_name”, name },
{ “email”, email },
{ “auto_approve”,true }
};