Skip to main content

Disapprove pending

Rejects the user's request to join a private chat room

Function DisapprovePending(Val Token, Val ChatID, Val UserID = "") Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringBot token
ChatID--chatidString, NumberChat ID
UserID--useridString, NumberUser ID. For all active requests if not filled in

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/resolvePending


1C:Enterprise/OneScript code example
    Token  = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
User = 1011987091;

Result = OPI_VKTeams.DisapprovePending(Token, ChatID, User);

Result = OPI_VKTeams.DisapprovePending(Token, ChatID);
    oint vkteams DisapprovePending \
--token "***" \
--chatid "689203963@chat.agent"
Result
{
"ok": false,
"description": "User is not pending or nobody in pending list"
}