module Slack::Web::Api::Endpoints::Apps
def apps_uninstall(options = {})
- See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/apps/apps.uninstall.json -
See: https://api.slack.com/methods/apps.uninstall -
Options Hash:
(**options)
-
:client_secret
(Object
) -- -
:client_id
(Object
) --
def apps_uninstall(options = {}) throw ArgumentError.new('Required arguments :client_id missing') if options[:client_id].nil? throw ArgumentError.new('Required arguments :client_secret missing') if options[:client_secret].nil? post('apps.uninstall', options) end