Ban
Bans a user in the selected chat
- Parameters
- Advanced call ?
Function Ban(Val Token, Val ChatID, Val UserID) Export
| Parameter | CLI option | Type | Required | 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
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete structure with fields code, body, and headers |
tip
Method at API documentation: banChatMember
1C:Enterprise/OneScript code example
Token = "6129457865:AAFyzNYOAFbu...";
UserID = "461699897";
ChannelID = "@testsichee";
Result = OPI_Telegram.Ban(Token, ChannelID, UserID);
- Bash
- CMD/Bat
oint telegram Ban \
--token "***" \
--chat "***" \
--user "461699897"
oint telegram Ban ^
--token "***" ^
--chat "***" ^
--user "461699897"
Result
{
"ok": true,
}