Iam trying to create meeting using POST /users/{userId}/meetings
with duration parameter.
as written in documentation “Meeting duration (minutes). Used for scheduled meetings only”
so i set up the type parameter with 2.
here is my full parameter when create meeting :
{
“userId”: “my_user_id”,
“topic”: “DNA Zoom Meeting”,
“type”: 2,
“start_time”: “2020-12-17T08:50:00”,
“duration”: 2,
“schedule_for”: “my_email”,
“timezone”: “Asia/Jakarta”,
“password”: “123”,
“agenda”: “DNA Zoom Meeting For Testing”,
“settings”: {
“host_video”: true,
“participant_video”: true,
“cn_meeting”: false,
“in_meeting”: false,
“waiting_room”: false,
“join_before_host”: true,
“mute_upon_entry”: true,
“watermark”: false,
“use_pmi”: false,
“approval_type”: 1,
“registration_type”: 2,
“audio”: “both”,
“auto_recording”: “none”,
“registrants_email_notification”: true
}
}
the response is success but when i am in the zoom meeting there is no countdown and the meeting still running even after 2 minutes pass.
is there any missing parameter that i need to setup for create duration meeting in zoom with API ?