1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-22 10:05:29 +02:00
Files
OpenIntegrations/docs/en/md/VKTeams/Chat-management/Set-chat-rules.mdx
T
2024-10-22 08:59:24 +03:00

70 lines
1.5 KiB
Plaintext

---
sidebar_position: 14
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Set chat rules
Sets new chat rules
`Function SetChatRules(Val Token, Val ChatID, Val Text) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Bot token |
| ChatID | --chatid | String, Number | ✔ | Chat ID |
| Text | --text | String | ✔ | Rules Text |
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/setRules](https://teams.vk.com/botapi/#/chats/get_chats_setRules)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
Text = "Text of the new rules";
Result = OPI_VKTeams.SetChatRules(Token, ChatID, Text);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint vkteams SetChatRules \
--token "***" \
--chatid "689203963@chat.agent" \
--text "Text of the new rules"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint vkteams SetChatRules ^
--token "***" ^
--chatid "689203963@chat.agent" ^
--text "Text of the new rules"
```
</TabItem>
</Tabs>
```json title="Result"
{
"ok": true
}
```