Email and time issue

Hello,
I am creating zoom meeting using API. post /users/{userId}/meetings
Also, In this what I am doing I am adding the participant using API
post /meetings/{meetingId}/registrants
Using this API I am adding 4-5 participant
Now I have some queries regarding this,

  1. Now when the participant is getting email for zoom meeting then in zoom meeting neither the end time nor agenda nor meeting duration is showing.
  2. Participant is not able is see other participants.
  3. I’m sending a Zoom meeting invite from the London time zone to a user in the India time zone, but the date and time in the title appear in the London time zone for the Indian user in the email notification. Is it possible to display the meeting time in the Indian time zone in the Zoom meeting title?
  4. Do I have to use or create another zoom template or am I missing something.

Hi @sfadmin
Thanks for reaching out to us and welcome to our Zoom Developer Forum!

To answer your questions:

  1. The end time or agenda won’t be displayed in the meeting
  2. Participants should be able to see other participants (if not, make sure you are not creating a webinar)
  3. The time in the invite will be London since it is when the meeting is scheduled

Hey @elisa.zoom ,
Thank you for the response
I am having doubt in 2nd point. I am creating meeting using
post /users/{userId}/meetings
And I am adding participant using
post /meetings/{meetingId}/registrants
So ,these registrants are getting email notification.
But when I am trying to add participant from post /users/{userId}/meetings this API , using the field “meeting_invitees”, then no email mentioned in this field is getting notification nor any particiapnt is added in the meeting.

Hi @sfadmin
Thanks for getting back to me
The “meeting_invitee” field, only works with some of the Calendar integrations.
If you want to add participants and have them receive an email, I suggest you to user the Add registrant endpoint

Hey @elisa.zoom ,
Thanks for your reply,
I have two more question,

  1. When I am deleing the meeting using API delete /meetings/{meetingId}, then only host is receiving the notification regarding meeting deleted, I want that participant should also receive the notification.
    In a body I am passing schedule_for_reminde, cancel_meeting_reminder (both) these parameter as true.
  2. When I am updating the meeting duration using patch /meetings/{meetingId}, neither the host nor participant is receiving the notification regarding duration change. We want that they should receive a notification because we are blocking their calendar using Add to google calendar option.