Not becoming hosts & recording a meeting

I created a meeting room through API (JWT)

[Q1]
One host and one participant are in the 1:1 meeting room.
At this time, the participant becomes the host when the host leaves the Meeting Room. Is there a way to keep the remaining participants from becoming hosts?

[Q2]
Can participants record a meeting without the permission of the host?

  • Below is the option I used to create a meeting room.

      $CURLOPT_POSTFIELDS_ARRY = array(
      topic => $topic,
      type => '2',
      start_time => $start_time,
      duration => 90,
      schedule_for => '',
      timezone => 'Asia/Seoul',
      password => $password,
      agenda => $agenda,
      recurrence => array(
      	type => 1,
      	repeat_interval => 90,
      	weekly_days => 1,
      	monthly_day => 23,
      	monthly_week => 1,
      	monthly_week_day => 1,
      	end_times => '',
      	end_date_time => ''
      	),
    
      settings => array(
      	host_video => 1,
      	participant_video => 1,
      	cn_meeting => '',
      	in_meeting => '',
      	join_before_host => 0,
      	mute_upon_entry => 0,
      	waiting_room => 1,
      	watermark => 0,
      	use_pmi => 0,
      	approval_type => 2,
      	registration_type => 1,
      	audio => 'both',
      	auto_recording => 'none',
      	enforce_login => 0,
      	enforce_login_domains => '',
      	alternative_hosts => '',
      	global_dial_in_countries => array(
      			0 => ''
      		),
      	registrants_email_notification => 1
      	)
      );

Hi @citrus7g,

Good questions!

Is there a way to keep the remaining participants from becoming hosts?

Unfortunately this is expected behavior, and one of the participants will always become the host if the original host leaves.

Can participants record a meeting without the permission of the host?

If the meeting has the auto-record setting enabled for Cloud Recording, the meeting will automatically be recorded without the host needing to be there.

Let me know if this helps!

Best,
Will

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.