Skip to content
Download Beeper

Messages

Manage chat messages

MessagesReactions

Manage message reactions

Add a reaction
chats.messages.reactions.add(strmessage_id, ReactionAddParams**kwargs) -> ReactionAddResponse
POST/v1/chats/{chatID}/messages/{messageID}/reactions
Remove a reaction
chats.messages.reactions.delete(strmessage_id, ReactionDeleteParams**kwargs) -> ReactionDeleteResponse
DELETE/v1/chats/{chatID}/messages/{messageID}/reactions
ModelsExpand Collapse
class ReactionAddResponse:
chat_id: str

Unique identifier of the chat.

message_id: str

Message ID.

reaction_key: str

Reaction key that was added

success: Literal[true]

Whether the reaction was successfully added

transaction_id: str

Transaction ID used for the reaction event

class ReactionDeleteResponse:
chat_id: str

Unique identifier of the chat.

message_id: str

Message ID.

reaction_key: str

Reaction key that was removed

success: Literal[true]

Whether the reaction was successfully removed