Module: Zoom::Actions::Groups

Included in:
Client
Defined in:
lib/zoom/actions/groups.rb

Instance Method Summary collapse

Instance Method Details

#groups_get(*args) ⇒ Object



10
11
12
13
14
# File 'lib/zoom/actions/groups.rb', line 10

def groups_get(*args)
  params = Zoom::Params.new(Utils.extract_options!(args))
  params.require(:group_id)
  Utils.parse_response self.class.get("/groups/#{params[:group_id]}", headers: request_headers)
end

#groups_list(*_args) ⇒ Object



6
7
8
# File 'lib/zoom/actions/groups.rb', line 6

def groups_list(*_args)
  Utils.parse_response self.class.get('/groups', headers: request_headers)
end