Send file
Sends a file (document) to a chat or channel
- Parameters
- Advanced call ?
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
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete HTTP structure with fields code, body, and headers |
| retries | Number of HTTP request send attempts on 5** status codes or internal client errors |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
1C:Enterprise/OneScript code example
Extension = "docx";
URL = "https://hut.openintegrations.dev/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
}