module Slack::Endpoint::Reactions
Public Instance Methods
Adds a reaction to an item.
@option options [Object] :name
Reaction (emoji) name.
@option options [Object] :channel
Channel where the message to add reaction to was posted.
@option options [Object] :file
File to add reaction to.
@option options [Object] :file_comment
File comment to add reaction to.
@option options [Object] :timestamp
Timestamp of the message to add reaction to.
@see api.slack.com/methods/reactions.add @see github.com/aki017/slack-api-docs/blob/master/methods/reactions.add.md @see github.com/aki017/slack-api-docs/blob/master/methods/reactions.add.json
# File lib/slack/endpoint/reactions.rb, line 22 def reactions_add(options={}) throw ArgumentError.new("Required arguments :name missing") if options[:name].nil? post("reactions.add", options) end
Gets reactions for an item.
@option options [Object] :channel
Channel where the message to get reactions for was posted.
@option options [Object] :file
File to get reactions for.
@option options [Object] :file_comment
File comment to get reactions for.
@option options [Object] :full
If true always return the complete reaction list.
@option options [Object] :timestamp
Timestamp of the message to get reactions for.
@see api.slack.com/methods/reactions.get @see github.com/aki017/slack-api-docs/blob/master/methods/reactions.get.md @see github.com/aki017/slack-api-docs/blob/master/methods/reactions.get.json
# File lib/slack/endpoint/reactions.rb, line 43 def reactions_get(options={}) post("reactions.get", options) end
Lists reactions made by a user.
@option options [Object] :count
Number of items to return per page.
@option options [Object] :full
If true always return the complete reaction list.
@option options [Object] :page
Page number of results to return.
@option options [Object] :user
Show reactions made by this user. Defaults to the authed user.
@see api.slack.com/methods/reactions.list @see github.com/aki017/slack-api-docs/blob/master/methods/reactions.list.md @see github.com/aki017/slack-api-docs/blob/master/methods/reactions.list.json
# File lib/slack/endpoint/reactions.rb, line 61 def reactions_list(options={}) post("reactions.list", options) end
Removes a reaction from an item.
@option options [Object] :name
Reaction (emoji) name.
@option options [Object] :channel
Channel where the message to remove reaction from was posted.
@option options [Object] :file
File to remove reaction from.
@option options [Object] :file_comment
File comment to remove reaction from.
@option options [Object] :timestamp
Timestamp of the message to remove reaction from.
@see api.slack.com/methods/reactions.remove @see github.com/aki017/slack-api-docs/blob/master/methods/reactions.remove.md @see github.com/aki017/slack-api-docs/blob/master/methods/reactions.remove.json
# File lib/slack/endpoint/reactions.rb, line 81 def reactions_remove(options={}) throw ArgumentError.new("Required arguments :name missing") if options[:name].nil? post("reactions.remove", options) end