removeMessageReaction

suspend fun removeMessageReaction(messageId: String, emojiText: String, userId: String = "@me")(source)

Remove a reaction from a message.

Required for unicode emoji, custom emoji must be formatted.

Parameters

messageId

The message to remove the reaction from.

emojiText

The text of the emoji to remove.

userId

The user whose reaction to remove. Defaults to the current user's reaction.

Throws


suspend fun removeMessageReaction(messageId: String, emoji: Emoji, userId: String = "@me")(source)

Remove a reaction from a message.

Parameters

messageId

The message to remove the reaction from.

emoji

The custom emoji to remove.

userId

The user whose reaction to remove. Defaults to the current user's reaction.

Throws