Skip to main content

Set chat title

Sets new chat title

Function SetChatTitle(Val Token, Val ChatID, Val Text) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
ChatID--chatidString, NumberChat ID
Text--textStringTitle text

Returns: Map Of KeyAndValue - serialized JSON response from VK Teams


tip

To call this method, the bot must be an administrator in the chat room.

Method at API documentation: GET ​​/chats/setTitle


1C:Enterprise/OneScript code example
    Token  = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
Text = "New title";

Result = OPI_VKTeams.SetChatTitle(Token, ChatID, Text);
    oint vkteams SetChatTitle \
--token "***" \
--chatid "689203963@chat.agent" \
--text "New title"
Result
{
"ok": true
}