Skip to main content

Send contact

Sends a contact with name and phone number

Function SendContact(Val Token, Val ChatID, Val Name, Val LastName, Val Phone, Val Keyboard = "") Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
ChatID--chatString, NumberTarget chat ID or ChatID*TopicID
Name--nameStringContact name
LastName--surnameStringContact last name
Phone--phoneStringContact phone number
Keyboard--keyboardStringKeyboard. See FormKeyboardFromButtonArray

Returns: Map Of KeyAndValue - serialized JSON response from Telegram


tip

Method at API documentation: sendContact


1C:Enterprise/OneScript code example
    Token     = "6129457865:AAFyzNYOAFbu...";
ChatID = "461699897";
ChannelID = "@testsichee";
Name = "Петр";
LastName = "Петров";
Phone = "88005553535";

Result = OPI_Telegram.SendContact(Token, ChatID , Name, LastName, Phone);

Result = OPI_Telegram.SendContact(Token, ChannelID, Name, LastName, Phone);
    oint telegram SendContact \
--token "***" \
--chat "@testsichee" \
--surname "Петров" \
--phone "88005553535" \
--name "Петр"
Result
{
"ok": true,
"result": {
"message_id": 8313,
"from": {
"id": 6129457865,
"is_bot": true,
"first_name": "Бот Виталий",
"username": "sicheebot"
},
"chat": {
"id": 461699897,
"first_name": "Anton",
"last_name": "Titowets",
"username": "JKIee",
"type": "private"
},
"date": 1728453435,
"contact": {
"phone_number": "88005553535",
"first_name": "Петр",
"last_name": "Петров"
}
}
}