send_reaction
Send emoji reactions to specific Telegram messages using message ID, enabling interactive bot responses and user engagement in channels.
Instructions
Send a reaction to a message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emoji | Yes | Emoji to send as reaction | |
message_id | Yes | Message ID to react to |
Input Schema (JSON Schema)
{
"properties": {
"emoji": {
"description": "Emoji to send as reaction",
"type": "string"
},
"message_id": {
"description": "Message ID to react to",
"type": "number"
}
},
"required": [
"message_id",
"emoji"
],
"type": "object"
}