Click or drag to resize

IZoomUpdateMeetingSettings Method

Update the settings for the specified meeting. Note that only those settings with a value specified are affected. So, for example, if you just want to update the join_before_host setting to true you could write zoom.UpdateMeetingSettings("123", new Meeting.SettingsInfo() { join_before_host = true }); and other settings would not be affected. Use UpdateMeeting(String, Meeting) to modify other aspects of the meeting.

Namespace:  NetQuarry.Services.Zoom
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
MeetingSettingsInfo UpdateMeetingSettings(
	string meetingId,
	MeetingSettingsInfo settings
)

Parameters

meetingId
Type: SystemString
The ID of the meeting to update.
settings
Type: NetQuarry.Services.ZoomMeetingSettingsInfo
The settings to apply.

Return Value

Type: MeetingSettingsInfo
The updated settings.
See Also