mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
1.1 KiB
1.1 KiB
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
:::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
:::
oint vkteams ForwardMessage --token %token% --message %message% --fromid %fromid% --chatid %chatid% --text %text%
{
"msgId": "7401634788940972096",
"ok": true
}