module Slack::Web::Api::Endpoints::UsergroupsUsers
def usergroups_users_list(options = {})
- See: https://github.com/dblock/slack-api-ref/blob/master/methods/usergroups.users/usergroups.users.list.json -
See: https://api.slack.com/methods/usergroups.users.list -
Options Hash:
(**options)
-
:include_disabled
(Object
) -- -
:usergroup
(Object
) --
def usergroups_users_list(options = {}) throw ArgumentError.new('Required arguments :usergroup missing') if options[:usergroup].nil? post('usergroups.users.list', options) end
def usergroups_users_update(options = {})
- See: https://github.com/dblock/slack-api-ref/blob/master/methods/usergroups.users/usergroups.users.update.json -
See: https://api.slack.com/methods/usergroups.users.update -
Options Hash:
(**options)
-
:include_count
(Object
) -- -
:users
(Object
) -- -
:usergroup
(Object
) --
def usergroups_users_update(options = {}) throw ArgumentError.new('Required arguments :usergroup missing') if options[:usergroup].nil? throw ArgumentError.new('Required arguments :users missing') if options[:users].nil? post('usergroups.users.update', options) end