Update settings applied to a meeting's Cloud Recording https://support.zoom.us/hc/enus/articles/203741855CloudRecording **Scopes**: recording:write:admin recording:write ** Rate Limit Label https://marketplace.zoom.us/docs/apireference/ratelimits#ratelimits :** Light

updateMeetingRecordingSettings(
  meetingId,
  share_recording = NULL,
  recording_authentication = NULL,
  authentication_option = NULL,
  authentication_domains = NULL,
  viewer_download = NULL,
  password = NULL,
  on_demand = NULL,
  approval_type = NULL,
  send_email_to_host = NULL,
  show_social_share_buttons = NULL,
  return_response = F
)

Arguments

meetingId

To get Cloud Recordings of a meeting, provide the meeting ID or meeting UUID. If the meeting ID is provided instead of UUID,the response will be for the latest meeting instance. To get Cloud Recordings of a webinar, provide the webinar ID or the webinar UUID. If the webinar ID is provided instead of UUID,the response will be for the latest webinar instance. If a UUID starts with "/" or contains "//" example: "/ajXp112QmuoKj4854875==" , you must **double encode** the UUID before making an API request.

share_recording

Determine how the meeting recording is shared.

recording_authentication

Only authenticated users can view.

authentication_option

Authentication Options.

authentication_domains

Authentication domains.

viewer_download

Determine whether a viewer can download the recording file or not.

password

Enable password protection for the recording by setting a password. The password must have a minimum of **eight** characters with a mix of numbers, letters and special characters.**Note:** If the account owner or the admin has set minimum password strength requirements for recordings via Account Settings, the password value provided here must meet those requirements. If the requirements are enabled, you can view those requirements by calling either the Get User Settings API https://marketplace.zoom.us/docs/apireference/zoomapi/users/usersettings or the Get Account Settings https://marketplace.zoom.us/docs/apireference/zoomapi/accounts/accountsettings API.

on_demand

Determine whether registration isrequired to view the recording.

approval_type

Approval type for the registration.0 Automatically approve the registration when a user registers.1 Manually approve or deny the registration of a user.2 No registration required to view the recording.

send_email_to_host

Send an email to host when someone registers to view the recording. This applies for Ondemand recordings only.

show_social_share_buttons

Show social share buttons on registration page. This applies for Ondemand recordings only.

return_response

Whether to return the response instead of the response content. Defaults to FALSE.