module Slack::Web::Api::Endpoints::Conversations

def conversations_join(options = {})

Other tags:
    See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.join.json -
    See: https://api.slack.com/methods/conversations.join -

Options Hash: (**options)
  • :channel (channel) --
def conversations_join(options = {})
  throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil?
  options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel]
  post('conversations.join', options)
end