Skip to main content

Send text message

Sends a text message to a chat or channel

Function SendTextMessage(Val Token, Val ChatID, Val Text, Val Keyboard = "", Val Markup = "Markdown", Val RepliedID = 0) Export

ParameterCLI optionTypeDescription
Token--tokenStringBot token
ChatID--chatString, NumberTarget chat ID or ChatID*TopicID
Text--textStringMessage text
Keyboard--keyboardStringKeyboard JSON or path to .json
Markup--parsemodeStringText processing type (HTML, Markdown, MarkdownV2)
RepliedID--replyString, NumberReply to message ID

Returns: Map Of KeyAndValue - Serialized JSON response from Telegram


Code example
    Token     = "6129457865:AAFyzNYOAFbu...";
ChatID = "461699897";
ChannelID = "@testsichee";
Text = "Строковое значение";

Result = OPI_Telegram.SendTextMessage(Token, ChatID, Text);

Result = OPI_Telegram.SendTextMessage(Token, ChannelID, Text);
CLI command example
    
oint telegram SendTextMessage --token "6129457865:AAFyzNYOAFbu..." --chat "461699897" --text "String value" --keyboard %keyboard% --parsemode %parsemode% --reply %reply%

Result
{
"ok": true,
"result": {
"message_id": 4638,
"from": {
"id": 6129457865,
"is_bot": true,
"first_name": "Vitaly The Bot",
"username": "sicheebot"
},
"chat": {
"id": 461699897,
"first_name": "Anton",
"last_name": "Titowets",
"username": "JKIee",
"type": "private"
},
"date": 1717072354,
"text": "String value"
}
}