module Slack::Web::Api::Endpoints::AdminTeamsAdmins

Public Instance Methods

admin_teams_admins_list(options = {}) { |page| ... } click to toggle source

List all of the admins on a given workspace.

@option options [Object] :team_id

.

@option options [Object] :cursor

Set cursor to next_cursor returned by the previous call to list items in the next page.

@option options [Object] :limit

The maximum number of items to return.

@see api.slack.com/methods/admin.teams.admins.list @see github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.teams.admins/admin.teams.admins.list.json

# File lib/slack/web/api/endpoints/admin_teams_admins.rb, line 20
def admin_teams_admins_list(options = {})
  throw ArgumentError.new('Required arguments :team_id missing') if options[:team_id].nil?
  if block_given?
    Pagination::Cursor.new(self, :admin_teams_admins_list, options).each do |page|
      yield page
    end
  else
    post('admin.teams.admins.list', options)
  end
end