You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-05-22 10:05:29 +02:00
58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
---
|
|
sidebar_position: 4
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# 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`
|
|
|
|
| Parameter | CLI option | Type | Required | 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 |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from VK Teams
|
|
|
|
<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="1C:Enterprise/OneScript code example"
|
|
Token = "001.3501506236.091...";
|
|
ChatID = "689203963@chat.agent";
|
|
MessageID = "7427552004584508943";
|
|
Text = "New message text";
|
|
|
|
Result = OPI_VKTeams.EditMessageText(Token, ChatID, MessageID, Text);
|
|
|
|
Text = "<b>New bold message text</b>";
|
|
Markup = "HTML";
|
|
|
|
Result = OPI_VKTeams.EditMessageText(Token, ChatID, MessageID, Text, Markup);
|
|
```
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"ok": true
|
|
}
|
|
```
|