module Zoom::Actions::Recording

Public Instance Methods

mc_recording_list(*args) click to toggle source
# File lib/zoom/actions/recording.rb, line 13
def mc_recording_list(*args)
  options = Utils.extract_options!(args)
  Zoom::Params.new(options).require(:host_id)
  Utils.process_datetime_params!(%i[from to], options)
  Utils.parse_response self.class.post('/mc/recording/list', query: options)
end
recording_delete(*args) click to toggle source
# File lib/zoom/actions/recording.rb, line 26
def recording_delete(*args)
  options = Utils.extract_options!(args)
  Zoom::Params.new(options).require(:meeting_id)
  Utils.parse_response self.class.post('/recording/delete', query: options)
end
recording_get(*args) click to toggle source
# File lib/zoom/actions/recording.rb, line 20
def recording_get(*args)
  options = Utils.extract_options!(args)
  Zoom::Params.new(options).require(:meeting_id)
  Utils.parse_response self.class.post('/recording/get', query: options)
end
recording_list(*args) click to toggle source
# File lib/zoom/actions/recording.rb, line 6
def recording_list(*args)
  options = Utils.extract_options!(args)
  Zoom::Params.new(options).require(:host_id)
  Utils.process_datetime_params!(%i[from to], options)
  Utils.parse_response self.class.post('/recording/list', query: options)
end