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

def channels_mark(options = {})

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

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