module Slack::Web::Api::Endpoints::AdminUsers
def admin_users_list(options = {})
- See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.users/admin.users.list.json -
See: https://api.slack.com/methods/admin.users.list -
Options Hash:
(**options)
-
:team_id
(Object
) -- -
:limit
(integer
) -- -
:is_active
(boolean
) -- -
:include_deactivated_user_workspaces
(boolean
) -- -
:cursor
(string
) --
def admin_users_list(options = {}) if block_given? Pagination::Cursor.new(self, :admin_users_list, options).each do |page| yield page end else post('admin.users.list', options) end end