Module: Zoomus::Actions::Report

Included in:
Client
Defined in:
lib/zoomus/actions/report.rb

Instance Method Summary collapse

Instance Method Details

#report_getaccountreport(*args) ⇒ Object



5
6
7
8
9
10
# File 'lib/zoomus/actions/report.rb', line 5

def report_getaccountreport(*args)
  options = Utils.extract_options!(args)
  Utils.require_params([:from, :to], options)
  Utils.process_datetime_params!([:from, :to], options)
  Utils.parse_response self.class.post("/report/getaccountreport", :query => options)
end

#report_getuserreport(*args) ⇒ Object



12
13
14
15
16
17
# File 'lib/zoomus/actions/report.rb', line 12

def report_getuserreport(*args)
  options = Utils.extract_options!(args)
  Utils.require_params([:user_id, :from, :to], options)
  Utils.process_datetime_params!([:from, :to], options)
  Utils.parse_response self.class.post("/report/getuserreport", :query => options)
end