1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-03 13:22:19 +02:00
Vitaly the Alpaca (bot) ab33d2f19d Main build (Jenkins)
2024-09-17 12:29:46 +03:00

49 lines
1023 B
Markdown

---
sidebar_position: 1
---
# Ban
Bans a user in the selected chat
`Function Ban(Val Token, Val ChatID, Val UserID) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Token | --token | String | Bot token |
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| UserID | --user | String, Number | Target user ID |
Returns: Map Of KeyAndValue - Serialized JSON response from Telegram
<br/>
```bsl title="Code example"
Token = FunctionParameters["Telegram_Token"];
UserID = FunctionParameters["Telegram_ChatID"];
ChannelID = FunctionParameters["Telegram_ChannelID"];
Result = OPI_Telegram.Ban(Token, ChannelID, UserID);
```
```sh title="CLI command example"
oint telegram Ban --token "6129457865:AAFyzNYOAFbu..." --chat %chat% --user "461699897"
```
```json title="Result"
{
"ok": false,
"error_code": 400,
"description": "Bad Request: can't remove chat owner"
}
```