module Slack::Web::Api::Endpoints::Groups

def groups_createChild(options = {})

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

Options Hash: (**options)
  • :channel (group) --
def groups_createChild(options = {})
  throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil?
  options = options.merge(channel: groups_id(options)['group']['id']) if options[:channel]
  post('groups.createChild', options)
end