Sha256: 0884752fdb06b4e2e43da279b6a5e6cc35e6b8ec0c51c289e9c91b6d140b7f98

Contents?: true

Size: 1.22 KB

Versions: 4

Compression:

Stored size: 1.22 KB

Contents

# frozen_string_literal: true
# This file was auto-generated by lib/tasks/web.rake

module Slack
  module Web
    module Api
      module Endpoints
        module AuthTeams
          #
          # List the workspaces a token can access.
          #
          # @option options [string] :cursor
          #   Set cursor to next_cursor returned by the previous call to list items in the next page.
          # @option options [boolean] :include_icon
          #   Whether to return icon paths for each workspace. An icon path represents a URI pointing to the image signifying the workspace.
          # @option options [integer] :limit
          #   The maximum number of workspaces to return. Must be a positive integer no larger than 1000.
          # @see https://api.slack.com/methods/auth.teams.list
          # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/auth.teams/auth.teams.list.json
          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
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
slack-ruby-client-2.1.0 lib/slack/web/api/endpoints/auth_teams.rb
slack-ruby-client-2.0.0 lib/slack/web/api/endpoints/auth_teams.rb
slack-ruby-client-1.1.0 lib/slack/web/api/endpoints/auth_teams.rb
slack-ruby-client-1.0.0 lib/slack/web/api/endpoints/auth_teams.rb