Add a reaction
chats.messages.reactions.add(strmessage_id, ReactionAddParams**kwargs) -> ReactionAddResponse
POST/v1/chats/{chatID}/messages/{messageID}/reactions
Add a reaction to an existing message.
Add a reaction
import os
from beeper_desktop_api import BeeperDesktop
client = BeeperDesktop(
access_token=os.environ.get("BEEPER_ACCESS_TOKEN"), # This is the default and can be omitted
)
response = client.chats.messages.reactions.add(
message_id="messageID",
chat_id="!NCdzlIaMjZUmvmvyHU:beeper.com",
reaction_key="x",
)
print(response.chat_id){
"chatID": "!signal_adamvy:local-signal.localhost",
"messageID": "1343993",
"reactionKey": "❤️",
"success": true,
"transactionID": "txn_123"
}Returns Examples
{
"chatID": "!signal_adamvy:local-signal.localhost",
"messageID": "1343993",
"reactionKey": "❤️",
"success": true,
"transactionID": "txn_123"
}