Module: Slack::Web::Api::Endpoints::AdminAppsConfig
- Included in:
- Slack::Web::Api::Endpoints
- Defined in:
- lib/slack/web/api/endpoints/admin_apps_config.rb
Instance Method Summary collapse
-
#admin_apps_config_lookup(options = {}) ⇒ Object
Look up the app config for connectors by their IDs.
-
#admin_apps_config_set(options = {}) ⇒ Object
Set the app config for a connector.
Instance Method Details
#admin_apps_config_lookup(options = {}) ⇒ Object
Look up the app config for connectors by their IDs
18 19 20 |
# File 'lib/slack/web/api/endpoints/admin_apps_config.rb', line 18 def admin_apps_config_lookup( = {}) post('admin.apps.config.lookup', ) end |
#admin_apps_config_set(options = {}) ⇒ Object
Set the app config for a connector
35 36 37 38 |
# File 'lib/slack/web/api/endpoints/admin_apps_config.rb', line 35 def admin_apps_config_set( = {}) raise ArgumentError, 'Required arguments :app_id missing' if [:app_id].nil? post('admin.apps.config.set', ) end |