1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-21 01:50:24 +02:00
OpenIntegrations/docs/en/md/VKTeams/Message-sending/Forward-message.md

60 lines
1.4 KiB
Markdown
Raw Normal View History

2024-08-11 12:02:11 +02:00
---
sidebar_position: 8
2024-08-11 12:02:11 +02:00
---
# Forward message
Forwards an existing message to the current dialog box
`Function ForwardMessage(Val Token, Val MessageID, Val FromChatID, Val ChatID, Val Text = "") Export`
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Token | --token | String | Bot token |
| MessageID | --message | String, Number | Original message ID |
| FromChatID | --fromid | String, Number | Source chat ID |
| ChatID | --chatid | String, Number | Chat ID for message sending |
| Text | --text | String | Additional message text |
Returns: HTTPResponse - Forward message
<br/>
:::tip
Only the chatId from events can be passed to the FromChatID (the code from the chat link is not suitable))
Method at API documentation: [GET /messages/sendText](https://teams.vk.com/botapi/#/messages/get_messages_sendText)
:::
<br/>
```bsl title="Code example"
Token = "001.3501506236.091...";
ChatID = "AoLI0egLWBSLR1Ngn2w";
FromChatID = "689203963@chat.agent";
MessageID = "7402287649739767956";
Result = OPI_VKTeams.ForwardMessage(Token, MessageID, FromChatID, ChatID);
Text = "Additional text";
Result = OPI_VKTeams.ForwardMessage(Token, MessageID, FromChatID, ChatID, Text);
```
2024-08-11 12:02:11 +02:00
```sh title="CLI command example"
oint vkteams ForwardMessage --token %token% --message %message% --fromid %fromid% --chatid %chatid% --text %text%
2024-08-11 12:02:11 +02:00
```
```json title="Result"
{
"msgId": "7401634788940972096",
"ok": true
}
```