module Slack::Web::Api::Endpoints::AdminAppsRestricted

Public Instance Methods

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

List restricted apps for an org or workspace.

@option options [Object] :cursor

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

@option options [Object] :enterprise_id

.

@option options [Object] :limit

The maximum number of items to return. Must be between 1 - 1000 both inclusive.

@option options [Object] :team_id

.

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

# File lib/slack/web/api/endpoints/admin_apps_restricted.rb, line 22
def admin_apps_restricted_list(options = {})
  if block_given?
    Pagination::Cursor.new(self, :admin_apps_restricted_list, options).each do |page|
      yield page
    end
  else
    post('admin.apps.restricted.list', options)
  end
end