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

def groups_mark(options = {})

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

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