Unblock chat user
Unblocks a previously blocked user in the chat room
Function UnblockChatUser(Val Token, Val ChatID, Val UserID) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Token | --token | String | ✔ | Bot token |
ChatID | --chatid | String, Number | ✔ | Chat ID |
UserID | --userid | String, Number | ✔ | User ID |
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/unblockUser
1C:Enterprise/OneScript code example
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
User = 1011987091;
Result = OPI_VKTeams.UnblockChatUser(Token, ChatID, User);
- Bash
- CMD/Bat
oint vkteams UnblockChatUser \
--token "***" \
--chatid "689203963@chat.agent" \
--userid 1011987091
oint vkteams UnblockChatUser ^
--token "***" ^
--chatid "689203963@chat.agent" ^
--userid 1011987091
Result
{
"ok": true
}