Module: Zoom::Actions::Recording
- Included in:
- Client
- Defined in:
- lib/zoom/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
13 14 15 16 17 18 |
# File 'lib/zoom/actions/recording.rb', line 13 def mc_recording_list(*args) = Utils.(args) Zoom::Params.new().require(:host_id) Utils.process_datetime_params!(%i[from to], ) Utils.parse_response self.class.post('/mc/recording/list', query: ) end |
#recording_delete(*args) ⇒ Object
26 27 28 29 30 |
# File 'lib/zoom/actions/recording.rb', line 26 def recording_delete(*args) = Utils.(args) Zoom::Params.new().require(:meeting_id) Utils.parse_response self.class.post('/recording/delete', query: ) end |
#recording_get(*args) ⇒ Object
20 21 22 23 24 |
# File 'lib/zoom/actions/recording.rb', line 20 def recording_get(*args) = Utils.(args) Zoom::Params.new().require(:meeting_id) Utils.parse_response self.class.post('/recording/get', query: ) end |
#recording_list(*args) ⇒ Object
6 7 8 9 10 11 |
# File 'lib/zoom/actions/recording.rb', line 6 def recording_list(*args) = Utils.(args) Zoom::Params.new().require(:host_id) Utils.process_datetime_params!(%i[from to], ) Utils.parse_response self.class.post('/recording/list', query: ) end |