Skip to main content

Set chat rules

Sets new chat rules

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

ParameterCLI optionTypeDescription
Token--tokenStringBot token
ChatID--chatidString, NumberChat ID
Text--textStringRules 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/setRules


Code example
    Token  = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
Text = "Text of the new rules";

Result = OPI_VKTeams.SetChatRules(Token, ChatID, Text);
CLI command example
    
oint vkteams SetChatRules --token "001.3501506236.091..." --chatid "689203963@chat.agent" --text %text%

Result
{
"ok": true
}