1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-01 22:29:52 +02:00
Files
OpenIntegrations/docs/en/md/Viber/Message-sending/Send-file.mdx
Vitaly the Alpaca (bot) aa10e4c564 Main build (Jenkins)
2025-10-21 11:36:43 +03:00

86 lines
2.7 KiB
Plaintext
Vendored

---
sidebar_position: 3
description: Send file and other functions to work with Viber in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Viber]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# 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
<br/>
```bsl title="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);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint viber SendFile \
--token "***" \
--file "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/document.docx" \
--user "tMNGhftyUPrB3r1lD+bT4g==" \
--ischannel true \
--ext "docx"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint viber SendFile ^
--token "***" ^
--file "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/document.docx" ^
--user "tMNGhftyUPrB3r1lD+bT4g==" ^
--ischannel true ^
--ext "docx"
```
</TabItem>
</Tabs>
```json title="Result"
{
"status": 0,
"status_message": "ok",
"message_token": 6024682567270547758,
"chat_hostname": "SN-CHAT-01_",
"billing_status": 3
}
```