module Slack::Web::Api::Endpoints::Reactions
def reactions_remove(options = {})
- See: https://github.com/dblock/slack-api-ref/blob/master/methods/reactions/reactions.remove.json -
See: https://api.slack.com/methods/reactions.remove -
Options Hash:
(**options)
-
:timestamp
(Object
) -- -
:file_comment
(Object
) -- -
:file
(file
) -- -
:channel
(channel
) -- -
:name
(Object
) --
def reactions_remove(options = {}) throw ArgumentError.new('Required arguments :name missing') if options[:name].nil? options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel] post('reactions.remove', options) end