Skip to main content

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

ParameterCLI optionTypeDescription
Token--tokenStringToken
URL--fileStringFile URL
UserID--userString, NumberUser ID. For channel > administrator, for bot > recipient
SendingToChannel--ischannelBooleanSending to channel or bot chat
Extension--extStringFile extension
Size--sizeNumberFile size. If not filled in > determined automatically by downloading the file

Returns: Map Of KeyAndValue - serialized JSON response from Viber


Code example
  
ChannelToken = "523b58ba82afffaa-111111111111111-2222222222222222";
UserID = "tMNGh111111111D+bT4g==";

Response = OPI_Viber.SendFile(ChannelToken, "https://api.athenaeum.digital/1.txt", UserID, True, "txt"); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
CLI command example
    
oint viber SendFile --token %token% --file %file% --user "tMNGh111111111D+bT4g" --ischannel %ischannel% --ext %ext% --size %size%

Result
{
"chat_hostname": "SN-CHAT-09_",
"message_token": 5925491906424759104,
"status_message": "ok",
"status": 0
}