API Endpoint
Description
We are making an application with zoom meeting apis using server to server auth.
Users can make an reservation then our system create a zoom meeting by api.
The user will be participants and tutor will be host of the meeting.
The issue is that both video and audio of the host are off when start a meeting,
however no problem with participants.
I want that when the host enter the meeting, both audio and video are set on automatically.
How to solve this?
Authentication method or app type
Server to Server Auth
Code of meeting detail
details = {
"agenda": zoom_meet_detail.agenda,
"topic": zoom_meet_detail.topic,
"duration": zoom_meet_detail.span,
"timezone": "",
"start_time": zoom_meet_detail.start_datetime,
"type": 2,
"settings": {
"allow_multiple_devices": True,
"audio": "both",
"auto_recording": "local",
"calendar_type": 2,
"email_notification": True,
"host_video": True,
"join_before_host": False,
"meeting_authentication": True,
"meeting_invitees": [
{
"email": zoom_meet_detail.student_email
}
],
"participant_video": True,
"private_meeting": True,
"registrants_confirmation_email": True,
"registrants_email_notification": True,
"waiting_room": True,
"alternative_host_update_polls": True,
"show_share_button": True,
}
}
Meeting Id
86335570513
Thanks for any help