1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-10 04:18:47 +02:00
OpenIntegrations/docs/en/md/Viber/Message-sending/Send-image.md
2024-08-14 09:06:31 +03:00

1.3 KiB

sidebar_position
2

Send image

Sends an image to a chat or channel

Function SendImage(Val Token, Val URL, Val UserID, Val SendingToChannel, Val Description = "") Export

Parameter CLI option Type Description
Token --token String Token
URL --picture String Image URL
UserID --user String, Number User ID. For channel > administrator, for bot > recipient
SendingToChannel --ischannel boolean Sending to channel or bot chat
Description --description String Image annotation

Returns: Map Of KeyAndValue - serialized JSON response from Viber


  
  ChannelToken = "523b58ba82afffaa-111111111111111-2222222222222222";
  UserID = "tMNGh111111111D+bT4g==";
  
  Response = OPI_Viber.SendImage(ChannelToken, "https://api.athenaeum.digital/logo.png", UserID, True, "Alpaca"); //Map
  Response = OPI_Tools.JSONString(Response); //JSON string
    
  oint viber SendImage --token %token% --picture %picture% --user "tMNGh111111111D+bT4g" --ischannel %ischannel% --description %description%

{
  "chat_hostname": "SN-CHAT-12_",
  "message_token": 5925484936191962157,
  "status_message": "ok",
  "status": 0
  }