SlackWeb.Reactions.remove

You're seeing just the function remove, go back to SlackWeb.Reactions module for more information.
Link to this function

remove(name, optional_params \\ %{})

View Source

Removes a reaction from an item.

Required Params

  • name - Reaction (emoji) name. ex: thumbsup

Optional Params

  • channel - Channel where the message to remove reaction from was posted.
  • file - File to remove reaction from.
  • file_comment - File comment to remove reaction from.
  • timestamp - Timestamp of the message to remove reaction from.

Errors the API can return:

  • bad_timestamp - Value passed for timestamp was invalid.
  • file_comment_not_found - File comment specified by file_comment does not exist.
  • file_not_found - File specified by file does not exist.
  • invalid_name - Value passed for name was invalid.
  • message_not_found - Message specified by channel and timestamp does not exist.
  • no_item_specified - file, file_comment, or combination of channel and timestamp was not specified.
  • no_reaction - The specified item does not have the user/reaction combination.