Send contact
Sends a contact with a phone number to a chat or channel
Function SendContact(Val Token, Val ContactName, Val PhoneNumber, Val UserID, Val SendingToChannel) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Token | --token | String | ✔ | Token |
ContactName | --name | String | ✔ | Contact name |
PhoneNumber | --phone | String | ✔ | Phone number |
UserID | --user | String, Number | ✔ | User ID. For channel > administrator, for bot > recipient |
SendingToChannel | --ischannel | Boolean | ✔ | Sending to channel or bot chat |
Returns: Map Of KeyAndValue - serialized JSON response from Viber
1C:Enterprise/OneScript code example
Name = "Petr Petrov";
Phone = "+123456789";
UserID = "d3jxe61Z4W73nmNkjYGgZg==";
Token = "523b5b25ed27e6ec-fdf013e4...";
SendingToChannel = False;
Result = OPI_Viber.SendContact(Token, Name, Phone, UserID, SendingToChannel);
UserID = "tMNGhftyUPrB3r1lD+bT4g==";
Token = "523b58ba82afffaa-7ef3b426...";
SendingToChannel = True;
Result = OPI_Viber.SendContact(Token, Name, Phone, UserID, SendingToChannel);
- Bash
- CMD/Bat
oint viber SendContact \
--token "***" \
--name "Petr Petrov" \
--phone "+123456789" \
--user "tMNGhftyUPrB3r1lD+bT4g==" \
--ischannel true
oint viber SendContact ^
--token "***" ^
--name "Petr Petrov" ^
--phone "+123456789" ^
--user "tMNGhftyUPrB3r1lD+bT4g==" ^
--ischannel true
Result
{
"status": 0,
"status_message": "ok",
"message_token": 6024682590964173394,
"chat_hostname": "SN-CHAT-03_",
"billing_status": 3
}