1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Telegram/Administration/Ban.md

48 lines
871 B
Markdown
Raw Normal View History

---
sidebar_position: 1
---
# Ban
Bans a user in the selected chat
*Function Ban(Val Token, Val ChatID, Val UserID) Export*
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Token | --token | String | Bot token |
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| UserID | --user | String, Number | Target user ID |
Returns: Key-Value Pair - Serialized JSON response from Telegram
```bsl title="Code example"
Token = "6129457865:AAFyzNYOAFbu...";
UserID = "461699897";
ChannelID = "@testsichee";
Result = OPI_Telegram.Ban(Token, ChannelID, UserID);
```
```sh title="CLI command example"
oint telegram Ban --token "6129457865:AAFyzNYOAFbu..." --chat %chat% --user "461699897"
2024-06-05 11:58:00 +02:00
```
```json title="Result"
{
"ok": false,
"error_code": 400,
"description": "Bad Request: can't remove chat owner"
}
```