mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-06 07:50:32 +00:00
1.8 KiB
1.8 KiB
kickChatMember
Description
Use this method to kick a user from a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the group on their own using invite links, etc., unless unbanned first. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns True on success.
Arguments
| Name | Type | Description |
|---|---|---|
chat_id |
#!python3 Union[int, str] |
Unique identifier for the target group or username of the target supergroup or channel (in the format @channelusername) |
user_id |
#!python3 int |
Unique identifier of the target user |
until_date |
#!python3 Optional[Union[int, datetime.datetime, datetime.timedelta]] |
Optional. Date when the user will be unbanned, unix time. If user is banned for more than 366 days or less than 30 seconds from the current time they are considered to be banned forever |
Response
Type: #!python3 bool
Description: In the case of supergroups and channels, the user will not be able to return to the group on their own using invite links, etc. Returns True on success.
Usage
As bot method
result: bool = await bot.kick_chat_member(...)
Method as object
Imports:
from aiogram.methods import KickChatMemberfrom aiogram.api.methods import KickChatMemberfrom aiogram.api.methods.kick_chat_member import KickChatMember
In handlers with current bot
result: bool = await KickChatMember(...)
With specific bot
result: bool = await bot(KickChatMember(...))
As reply into Webhook in handler
return KickChatMember(...)