Hi,
I am using zoom apis, Created scheduled meeting but I am able to start meeting again and again with the same url (It seems it is recurred meeting).
My requirement -
once mentor ends the meeting he can never start the meeting again with the same url.
Please help what needs to be change ?
Sample Data to create scheduled meeting -
$payload = [
“topic”=> ‘abc’
“start_time”=> str_replace(’+00:00’, ‘Z’, gmdate(‘c’, strtotime(date))),
“duration”=> 30,
];
$payload[“type”] = “2”;
$payload[“timezone”] = “Asia/Kolkata”;
$payload[“settings”] = [
“host_video”=> true,
“participant_video”=> true,
“cn_meeting”=> false,
“in_meeting”=> true,
“join_before_host”=> false,
“mute_upon_entry”=> true,
“watermark”=> false,
“use_pmi”=> false,
“approval_type”=> 2,
“registration_type” => 2,
“close_registration” => true,
“audio”=> “both”,
“auto_recording”=> “cloud”,
“enforce_login”=> false,
“enforce_login_domains”=> “”,
“alternative_hosts”=> “”,
“global_dial_in_countries”=>
];