mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 02:03:04 +00:00
1,021 B
1,021 B
leaveChat
Description
Use this method for your bot to leave a group, supergroup or channel. Returns True on success.
Arguments
| Name | Type | Description |
|---|---|---|
chat_id |
#!python3 Union[int, str] |
Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) |
Response
Type: #!python3 bool
Description: Returns True on success.
Usage
As bot method bot
result: bool = await bot.leave_chat(...)
Method as object
Imports:
from aiogram.types import LeaveChatfrom aiogram.api.types import LeaveChatfrom aiogram.api.types.leave_chat import LeaveChat
As reply into Webhook
return LeaveChat(...)
With specific bot
result: bool = await bot.emit(LeaveChat(...))
In handlers with current bot
result: bool = await LeaveChat(...)