2024-08-13 12:24:12 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 4
|
|
|
|
---
|
|
|
|
|
|
|
|
# Change the message text
|
|
|
|
Changes the text of an existing message
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function EditMessageText(Val Token, Val ChatID, Val MessageID, Val Text, Val Markup = "MarkdownV2") Export`
|
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Token | --token | String | Bot token |
|
|
|
|
| ChatID | --chatid | String, Number | Chat ID for message sending |
|
|
|
|
| MessageID | --messageid | String, Number | Message ID for editing |
|
|
|
|
| Text | --text | String | New message text |
|
|
|
|
| Markup | --parsemod | String | Markup type for message text: MarkdownV2 or HTML |
|
2024-08-13 12:24:12 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - Serialized JSON response from VK Teams
|
2024-08-13 12:24:12 +02:00
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
:::tip
|
|
|
|
You can mention a user by appending their userId to the text in the following format @[userId]
|
|
|
|
|
|
|
|
Method at API documentation: [GET /messages/editText](https://teams.vk.com/botapi/#/messages/get_messages_editText)
|
|
|
|
:::
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
2024-08-13 14:52:26 +02:00
|
|
|
Token = FunctionParameters["VkTeams_Token"];
|
|
|
|
ChatID = FunctionParameters["VkTeams_ChatID2"];
|
|
|
|
MessageID = FunctionParameters["VkTeams_MessageID"];
|
|
|
|
Text = "New message text";
|
|
|
|
|
|
|
|
Result = OPI_VKTeams.EditMessageText(Token, ChatID, MessageID, Text);
|
|
|
|
|
|
|
|
OPI_TestDataRetrieval.WriteLog(Result, "EditMessageText (simple)", "VkTeams");
|
|
|
|
|
|
|
|
Text = "<b>New bold message text</b>";
|
|
|
|
Markup = "HTML";
|
|
|
|
|
|
|
|
Result = OPI_VKTeams.EditMessageText(Token, ChatID, MessageID, Text, Markup);
|
2024-08-13 12:24:12 +02:00
|
|
|
```
|
2024-08-13 14:52:26 +02:00
|
|
|
|
2024-08-13 12:24:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
oint vkteams EditMessageText --token "001.3501506236.091..." --chatid "689203963@chat.agent" --messageid "7402287649739767956" --text %text% --parsemod "HTML"
|
2024-08-13 12:24:12 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
```json title="Result"
|
2024-08-13 12:24:12 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
```
|