module Slack::Web::Api::Endpoints::AppsEventAuthorizations
def apps_event_authorizations_list(options = {})
- See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/apps.event.authorizations/apps.event.authorizations.list.json -
See: https://api.slack.com/methods/apps.event.authorizations.list -
Options Hash:
(**options)
-
:limit
(Object
) -- -
:cursor
(Object
) -- -
:event_context
(Object
) --
def apps_event_authorizations_list(options = {}) throw ArgumentError.new('Required arguments :event_context missing') if options[:event_context].nil? if block_given? Pagination::Cursor.new(self, :apps_event_authorizations_list, options).each do |page| yield page end else post('apps.event.authorizations.list', options) end end