Skip to main content

Send voice

Sends an audio file as a voice message

Function SendVoice(Val Token, Val ChatID, Val File, Val FileType = "m4a", Val ReplyID = 0, Val Keyboard = "") Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
ChatID--chatidString, NumberChat ID for sending
File--fileBinaryData, StringFile for sending
FileType--typeStringAudio type: aac, ogg or m4a
ReplyID--replyString, NumberReplying message id if necessary
Keyboard--keyboardArray Of StringButtons to the message if necessary

Returns: Map Of KeyAndValue - serialized JSON response from VK Teams


tip

If you want the client to display this file as a playable voice message, it must be in aac, ogg, or m4a format

Method at API documentation: POST /messages/sendVoice
Parameters with Binary data type can also accept file paths on disk and URLs


1C:Enterprise/OneScript code example
    Token   = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
ReplyID = "7428324441567793059";

File = "https://api.athenaeum.digital/test_data/song.m4a" ; // URL
FilePath = GetTempFileName("m4a"); // Path

CopyFile(File, FilePath);

FileBD = New BinaryData(FilePath); // Binary

Result = OPI_VKTeams.SendVoice(Token, ChatID, File);

Result = OPI_VKTeams.SendVoice(Token, ChatID, FilePath, ,ReplyID);

Result = OPI_VKTeams.SendVoice(Token, ChatID, FileBD);
    oint vkteams SendVoice \
--token "***" \
--chatid "689203963@chat.agent" \
--file "C:\Users\Administrator\AppData\Local\Temp\hllfpea0d4j.m4a" \
--reply "7431934219846160783"
Result
{
"fileId": "I000bPC37Th9syNcxyaG4r670621651bd",
"msgId": "7423657753442257991",
"ok": true
}