module Slack::Web::Api::Endpoints::AdminAppsRestricted
def admin_apps_restricted_list(options = {})
- See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.apps.restricted/admin.apps.restricted.list.json -
See: https://api.slack.com/methods/admin.apps.restricted.list -
Options Hash:
(**options)-
:certified(boolean) -- -
:enterprise_id(Object) -- -
:team_id(Object) -- -
:cursor(string) -- -
:limit(integer) --
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