slack-ruby/slack-ruby-client

View on GitHub
lib/slack/web/api/endpoints/apps_connections.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
# This file was auto-generated by lib/tasks/web.rake

module Slack
  module Web
    module Api
      module Endpoints
        module AppsConnections
          #
          # Generate a temporary Socket Mode WebSocket URL that your app can connect to in order to receive events and interactive payloads over.
          #
          # @see https://api.slack.com/methods/apps.connections.open
          # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/apps.connections/apps.connections.open.json
          def apps_connections_open(options = {})
            post('apps.connections.open', options)
          end
        end
      end
    end
  end
end