Introduction
This function increments the react count of specific posts in a Telegram chat.
Endpoint
Method: POST
URL: /add-reaction
Request Body
folder
(String, required): The folder containing the accounts to be checked for spambots.phones
(List, required): The list of phones to be checkedchat
(String, optional): Channel Namelimit
(int, optional): limit to iter messagesmessage_links
(List, optional): copy telegram channel message linksemojies
(List, required): list of emojies
Example Request Body for messsage_links
{
"folder": "active",
"phones": ["123456789", "123456780"],
"chat": "example",
"message_links": [
"https://t.me/vottingchannel123/15",
"https://t.me/vottingchannel123/6"
],
"emojies": ["👏", "😁"],
}
Example Request Body for limit and chat
{
"folder": "active",
"phones": ["123456789", "123456780"],
"chat": "example",
"limit": 100,
"emojies": ["👏", "😁"],
}
Example Response
- Stream Text
{
"123456798": 0,
"2135467890": 100
}