Skip to main content

channelMessageLiked

When a channel message is liked this event is triggered

JavaScript
frame1.on("channelMessageLiked", (message) => {
console.log("channelMessageLiked", message);
});

Properties

PropertiesDescriptionType
messageIdid of the message that is likedString
reactionreactionString
usernameusername of the user that liked the messageString
userIduserId of the user that liked the messageString
channelIdId of the channelString
actionliked or unlikedString
JSON Sample Response
{
"messageId": "632a3cb9f0357f1c648791f4",
"reaction": "thumbs_up",
"username": "dasdas",
"userId": "63233015c3aa3508a4c8fc34",
"channelId": "6325e6bef0357f1c648791a4",
"action": "liked"
}