Skip to main content

Block chat user

Blocks the selected user in chat

Function BlockChatUser(Val Token, Val ChatID, Val UserID, Val DeleteLastMessages = False) Export

ParameterCLI optionTypeDescription
Token--tokenStringBot token
ChatID--chatidString, NumberChat ID
UserID--useridString, NumberUser ID to be blocked
DeleteLastMessages--dellastBooleanDelete last messages before blocking

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​/blockUser


Code example
    Token  = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
User = 1011987091;

Result = OPI_VKTeams.BlockChatUser(Token, ChatID, User, True);
CLI command example
    
oint vkteams BlockChatUser --token "001.3501506236.091..." --chatid "689203963@chat.agent" --userid %userid% --dellast %dellast%

Result
{
"ok": true
}