Module: Zoomus::Actions::Recording
- Included in:
- Client
- Defined in:
- lib/zoomus/actions/recording.rb
Instance Method Summary collapse
- #mc_recording_list(*args) ⇒ Object
- #recording_delete(*args) ⇒ Object
- #recording_get(*args) ⇒ Object
- #recording_list(*args) ⇒ Object
Instance Method Details
#mc_recording_list(*args) ⇒ Object
12 13 14 15 16 17 |
# File 'lib/zoomus/actions/recording.rb', line 12 def mc_recording_list(*args) = Utils.(args) Utils.require_params([:host_id], ) Utils.process_datetime_params!([:from, :to], ) Utils.parse_response self.class.post('/mc/recording/list', :query => ) end |
#recording_delete(*args) ⇒ Object
25 26 27 28 29 |
# File 'lib/zoomus/actions/recording.rb', line 25 def recording_delete(*args) = Utils.(args) Utils.require_params([:meeting_id], ) Utils.parse_response self.class.post('/recording/delete', :query => ) end |
#recording_get(*args) ⇒ Object
19 20 21 22 23 |
# File 'lib/zoomus/actions/recording.rb', line 19 def recording_get(*args) = Utils.(args) Utils.require_params([:meeting_id], ) Utils.parse_response self.class.post('/recording/get', :query => ) end |
#recording_list(*args) ⇒ Object
5 6 7 8 9 10 |
# File 'lib/zoomus/actions/recording.rb', line 5 def recording_list(*args) = Utils.(args) Utils.require_params([:host_id], ) Utils.process_datetime_params!([:from, :to], ) Utils.parse_response self.class.post('/recording/list', :query => ) end |