1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-21 19:49:47 +02:00
Vitaly the Alpaca (bot) bec1c1661a Main build (Jenkins)
2024-10-15 21:15:56 +03:00

53 lines
1.2 KiB
Plaintext

---
sidebar_position: 10
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# 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 | Required | 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
<br/>
:::tip
To call this method, the bot must be an administrator in the chat room.
Method at API documentation: [GET ​​/chats/resolvePending](https://teams.vk.com/botapi/#/chats/get_chats_resolvePending)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
User = 1011987091;
Result = OPI_VKTeams.ApprovePending(Token, ChatID, User);
Result = OPI_VKTeams.ApprovePending(Token, ChatID);
```
```json title="Result"
{
"ok": false,
"description": "User is not pending or nobody in pending list"
}
```