1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-22 10:05:29 +02:00
Files
OpenIntegrations/docs/en/md/VKTeams/Message-sending/Resend-voice.md
T
Vitaly the Alpaca (bot) d972986846 Main build (Jenkins)
2024-09-27 21:04:12 +03:00

52 lines
1.1 KiB
Markdown

---
sidebar_position: 7
---
# Resend voice
Sends a previously uploaded voice message by ID
`Function ResendVoice(Val Token, Val ChatID, Val FileID) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Token | --token | String | Bot token |
| ChatID | --chatid | String, Number | Chat ID for sending |
| FileID | --fileid | String, Number | File ID of voice message |
Returns: Map Of KeyAndValue - Serialized JSON response from VK Teams
<br/>
:::tip
Method at API documentation: [GET /messages/sendVoice](https://teams.vk.com/botapi/#/messages/get_messages_sendVoice)
:::
<br/>
```bsl title="Code example"
Token = "001.3501506236.091...";
ChatID = "AoLI0egLWBSLR1Ngn2w";
FileID = "I000bknkWbWwh8Fy0kkt9l66f69ea61bd";
Result = OPI_VKTeams.ResendVoice(Token, ChatID, FileID);
```
```sh title="CLI command example"
oint vkteams ResendVoice --token %token% --chatid %chatid% --fileid %fileid%
```
```json title="Result"
{
"fileId": "I000be4KKMDOLDbYUqPbXs66bb96bd1bd",
"msgId": "7402676176776331485",
"ok": true
}
```