Send file
Sends a file (document) to a chat or channel
Function SendFile(Val Token, Val URL, Val UserID, Val SendingToChannel, Val Extension, Val Size = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Token | --token | String | ✔ | Token |
URL | --file | String | ✔ | File URL |
UserID | --user | String, Number | ✔ | User ID. For channel > administrator, for bot > recipient |
SendingToChannel | --ischannel | Boolean | ✔ | Sending to channel or bot chat |
Extension | --ext | String | ✔ | File extension |
Size | --size | Number | ✖ | File size. If not filled in > determined automatically by downloading the file |
Returns: Map Of KeyAndValue - serialized JSON response from Viber
1C:Enterprise/OneScript code example
Extension = "docx";
URL = "https://api.athenaeum.digital/test_data/document.docx";
UserID = "d3jxe61Z4W73nmNkjYGgZg==";
Token = "523b5b25ed27e6ec-fdf013e4...";
SendingToChannel = False;
Result = OPI_Viber.SendFile(Token, URL, UserID, SendingToChannel, Extension);
UserID = "tMNGhftyUPrB3r1lD+bT4g==";
Token = "523b58ba82afffaa-7ef3b426...";
SendingToChannel = True;
Result = OPI_Viber.SendFile(Token, URL, UserID, SendingToChannel, Extension);
- Bash
- CMD/Bat
oint viber SendFile \
--token "***" \
--file "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/document.docx" \
--user "tMNGhftyUPrB3r1lD+bT4g==" \
--ischannel true \
--ext "docx"
oint viber SendFile ^
--token "***" ^
--file "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/document.docx" ^
--user "tMNGhftyUPrB3r1lD+bT4g==" ^
--ischannel true ^
--ext "docx"
Result
{
"status": 0,
"status_message": "ok",
"message_token": 6024682567270547758,
"chat_hostname": "SN-CHAT-01_",
"billing_status": 3
}