module Zoom::Actions::Account
Public Instance Methods
account_billing_get(*args)
click to toggle source
Billing related API Endpoints
# File lib/zoom/actions/account.rb, line 50 def account_billing_get(*args) # TODO: implement account_billing_get # options = Utils.extract_options!(args) raise Zoom::NotImplemented, 'account_billing_get is not yet implemented' end
account_billing_update(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 56 def account_billing_update(*args) # TODO: implement account_billing_update # options = Utils.extract_options!(args) raise Zoom::NotImplemented, 'account_billing_update is not yet implemented' end
account_create(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 12 def account_create(*args) # TODO: implement accounts_create # options = Utils.extract_options!(args) raise Zoom::NotImplemented, 'accounts_create is not yet implemented' end
account_delete(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 24 def account_delete(*args) # TODO: implement account_delete # options = Utils.extract_options!(args) raise Zoom::NotImplemented, 'account_delete is not yet implemented' end
account_get(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 18 def account_get(*args) # TODO: implement account_get # options = Utils.extract_options!(args) raise Zoom::NotImplemented, 'account_get is not yet implemented' end
account_list(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 6 def account_list(*args) params = Zoom::Params.new(Utils.extract_options!(args)) params.permit(:page_size, :page_number) Utils.parse_response self.class.get("/accounts", query: params, headers: request_headers) end
account_options_update(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 30 def account_options_update(*args) # TODO: implement account_options_update # options = Utils.extract_options!(args) raise Zoom::NotImplemented, 'account_options_update is not yet implemented' end
account_plans_list(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 62 def account_plans_list(*args) # TODO: implement account_plans_list # options = Utils.extract_options!(args) raise Zoom::NotImplemented, 'account_plans_list is not yet implemented' end
account_settings_get(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 36 def account_settings_get(*args) params = Zoom::Params.new(Utils.extract_options!(args)) params.require(:id) Utils.parse_response self.class.get("/accounts/#{params[:id]}/settings", query: params.except(:id), headers: request_headers) end
account_settings_update(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 42 def account_settings_update(*args) # TODO: implement account_settings_update # options = Utils.extract_options!(args) raise Zoom::NotImplemented, 'account_settings_update is not yet implemented' end
some_method(*args)
click to toggle source
# File lib/zoom/actions/account.rb, line 68 def some_method(*args) # TODO: implement some_method # options = Utils.extract_options!(args) raise Zoom::NotImplemented, 'some_method is not yet implemented' end