1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-26 05:37:27 +02:00
Vitaly the Alpaca (bot) 4a9fd2c336 Main build (Jenkins)
2024-09-24 11:38:18 +03:00

1.2 KiB

sidebar_position
10

Approve pending

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

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

Parameter CLI option Type Description
Token --token String Bot token
ChatID --chatid String, Number Chat ID
UserID --userid String, Number User 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 :::

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

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

    Result = OPI_VKTeams.ApprovePending(Token, ChatID);
    
  oint vkteams ApprovePending --token "001.3501506236.091..." --chatid "689203963@chat.agent" --userid %userid%

{
 "ok": false,
 "description": "User is not pending or nobody in pending list"
}