Send text message
Sends a text message to a chat
- Parameters
- Advanced call ?
Function SendTextMessage(Val Token, Val ChatID, Val Text, Val ReplyID = 0, Val Keyboard = "", Val Markup = "MarkdownV2") Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Bot token |
| ChatID | --chatid | String, Number | ✔ | Chat ID for message sending |
| Text | --text | String | ✔ | Message text |
| ReplyID | --reply | String, Number | ✖ | Replying message id if necessary |
| Keyboard | --keyboard | Array Of String | ✖ | Buttons to the message if necessary |
| Markup | --parsemod | String | ✖ | Markup type for message text: MarkdownV2 or HTML |
Returns
Map Of KeyAndValue - serialized JSON response from VK Teams
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete HTTP structure with fields code, body, and headers |
| retries | Number of HTTP request send attempts on 5** status codes or internal client errors |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
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
1C:Enterprise/OneScript code example
Token = "001.3501506236.091...";
ChatID = "AoLI0egLWBSLR1Ngn2w";
Text = "Message text";
Result = OPI_VKTeams.SendTextMessage(Token, ChatID, Text);
ChatID = "689203963@chat.agent";
ReplyID = "7567354422724936211";
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);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint vkteams SendTextMessage \
--token "***" \
--chatid "***" \
--text "<b>Bold text</b>" \
--reply "7567354422724936211" \
--keyboard "[[{'text':'Button1','callbackData':'ButtonEvent1','style':'attention'},{'text':'Button2','url':'https://openintegrations.dev','style':'base'}],[{'text':'Button1','callbackData':'ButtonEvent1','style':'attention'},{'text':'Button2','url':'https://openintegrations.dev','style':'base'}]]" \
--parsemod "HTML"
:: JSON data can also be passed as a path to a .json file
oint vkteams SendTextMessage ^
--token "***" ^
--chatid "***" ^
--text "<b>Bold text</b>" ^
--reply "7567354422724936211" ^
--keyboard "[[{'text':'Button1','callbackData':'ButtonEvent1','style':'attention'},{'text':'Button2','url':'https://openintegrations.dev','style':'base'}],[{'text':'Button1','callbackData':'ButtonEvent1','style':'attention'},{'text':'Button2','url':'https://openintegrations.dev','style':'base'}]]" ^
--parsemod "HTML"
Result
{
"msgId": "7644175096839428271",
"ok": true
}