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="1343993",
chat_id="!NCdzlIaMjZUmvmvyHU:beeper.com",
reaction_key="x",
)
print(response.chat_id){
"chatID": "!whatsapp_15550101002:ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc.local-whatsapp.localhost",
"messageID": "1343993",
"reactionKey": "❤️",
"success": true,
"transactionID": "txn_v3a8f4c9d2e1"
}Returns Examples
{
"chatID": "!whatsapp_15550101002:ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc.local-whatsapp.localhost",
"messageID": "1343993",
"reactionKey": "❤️",
"success": true,
"transactionID": "txn_v3a8f4c9d2e1"
}