module Slack::Web::Api::Endpoints::Channels

def channels_rename(options = {})

Other tags:
    See: https://github.com/dblock/slack-api-ref/blob/master/methods/channels.rename.json -
    See: https://api.slack.com/methods/channels.rename -

Options Hash: (**options)
  • :name (Object) --
  • :channel (channel) --
def channels_rename(options = {})
  throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil?
  throw ArgumentError.new('Required arguments :name missing') if options[:name].nil?
  post('channels.rename', options)
end