mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
48 lines
1.1 KiB
Markdown
48 lines
1.1 KiB
Markdown
|
---
|
||
|
sidebar_position: 6
|
||
|
---
|
||
|
|
||
|
# 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/>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
```sh title="CLI command example"
|
||
|
|
||
|
oint vkteams ForwardMessage --token %token% --message %message% --fromid %fromid% --chatid %chatid% --text %text%
|
||
|
|
||
|
```
|
||
|
|
||
|
```json title="Result"
|
||
|
{
|
||
|
"msgId": "7401634788940972096",
|
||
|
"ok": true
|
||
|
}
|
||
|
```
|