Module: Slack::Web::Api::Endpoints::Apps
- Included in:
- Slack::Web::Api::Endpoints
- Defined in:
- lib/slack/web/api/endpoints/apps.rb
Instance Method Summary collapse
-
#apps_uninstall(options = {}) ⇒ Object
Uninstalls your app from a workspace.
Instance Method Details
#apps_uninstall(options = {}) ⇒ Object
Uninstalls your app from a workspace.
18 19 20 21 22 |
# File 'lib/slack/web/api/endpoints/apps.rb', line 18 def apps_uninstall( = {}) throw ArgumentError.new('Required arguments :client_id missing') if [:client_id].nil? throw ArgumentError.new('Required arguments :client_secret missing') if [:client_secret].nil? post('apps.uninstall', ) end |