deleteReaction

fun deleteReaction(messageId: String, reactionType: String, cid: String? = null): Call<Message>

Deletes the reaction associated with the message with the given message id. cid parameter is being used in side effect functions executed by plugins. You can skip it if plugins are not being used.

The call will be retried accordingly to retryPolicy.

Return

Executable async Call responsible for deleting the reaction.

Parameters

messageId

The id of the message to which reaction belongs.

reactionType

The type of reaction.

cid

The full channel id, i.e. "messaging:123" to which the message with reaction belongs.

See also

RetryPolicy