Remove a reaction
DELETE/v1/chats/{chatID}/messages/{messageID}/reactions
Remove the authenticated user's reaction from an existing message.
Path Parameters
chatID: string
Unique identifier of the chat.
messageID: string
Query Parameters
reactionKey: string
Reaction key to remove
minLength1
Returns
chatID: string
Unique identifier of the chat.
messageID: string
Message ID.
reactionKey: string
Reaction key that was removed
success: true
Whether the reaction was successfully removed
Remove a reaction
curl http://localhost:23373/v1/chats/$CHAT_ID/messages/$MESSAGE_ID/reactions \
-X DELETE{
"chatID": "!signal_adamvy:local-signal.localhost",
"messageID": "1343993",
"reactionKey": "❤️",
"success": true
}Returns Examples
{
"chatID": "!signal_adamvy:local-signal.localhost",
"messageID": "1343993",
"reactionKey": "❤️",
"success": true
}