module Slack::Web::Api::Endpoints::AuthTeams

def auth_teams_list(options = {})

Other tags:
    See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/auth.teams/auth.teams.list.json -
    See: https://api.slack.com/methods/auth.teams.list -

Options Hash: (**options)
  • :limit (integer) --
  • :include_icon (boolean) --
  • :cursor (string) --
def auth_teams_list(options = {})
  if block_given?
    Pagination::Cursor.new(self, :auth_teams_list, options).each do |page|
      yield page
    end
  else
    post('auth.teams.list', options)
  end
end