Skip to main content

Send text message

Sends a text message to a chat

Function SendTextMessage(Val Token, Val ChatID, Val Text, Val ReplyID = 0, Val Keyboard = "", Val Markup = "MarkdownV2") Export

ParameterCLI optionTypeDescription
Token--tokenStringBot token
ChatID--chatidString, NumberChat ID for message sending
Text--textStringMessage text
ReplyID--replyString, NumberReplying message id if necessary
Keyboard--keyboardArray Of StringButtons to the message if necessary
Markup--parsemodStringMarkup type for message text: MarkdownV2 or HTML

Returns: Map Of KeyAndValue - Serialized JSON response from VK Teams


tip

You can mention a user by appending their userId to the text in the following format @[userId]

Method at API documentation: GET /messages/sendText


Code example
    Token  = "001.3501506236.091...";
ChatID = "AoLI0egLWBSLR1Ngn2w";
Text = "Message text";

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

ChatID = "689203963@chat.agent";
ReplyID = "7407047289547522916";
Text = "<b>Bold text</b>";
Markup = "HTML";

Keyboard = New Array;
ButtonsLineArray = New Array;

ButtonsLineArray.Add(OPI_VKTeams.MakeActionButton("Button1", "ButtonEvent1", , "attention"));

ButtonsLineArray.Add(OPI_VKTeams.MakeActionButton("Button2", , "https://openintegrations.dev"));

Keyboard.Add(ButtonsLineArray);
Keyboard.Add(ButtonsLineArray);

Result = OPI_VKTeams.SendTextMessage(Token, ChatID, Text, ReplyID, Keyboard, Markup);
CLI command example
    
oint vkteams SendTextMessage --token "001.3501506236.091..." --chatid "689203963@chat.agent" --text "<b>Bold text</b>" --reply "7402287649739767956" --keyboard %keyboard% --parsemod "HTML"

Result
{
"msgId": "7402676039337377954",
"ok": true
}