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

def conversations_info(options = {})

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

Options Hash: (**options)
  • :include_num_members (boolean) --
  • :include_locale (boolean) --
  • :channel (channel) --
def conversations_info(options = {})
  raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
  options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
  post('conversations.info', options)
end