removeChatVerification¶
Returns: bool
- class aiogram.methods.remove_chat_verification.RemoveChatVerification(*, chat_id: int | str, **extra_data: Any)[source]¶
Removes verification from a chat that is currently verified on behalf of the organization represented by the bot. Returns
True
on success.Source: https://core.telegram.org/bots/api#removechatverification
- chat_id: int | str¶
Unique identifier for the target chat or username of the target channel (in the format
@channelusername
)
Usage¶
As bot method¶
result: bool = await bot.remove_chat_verification(...)
Method as object¶
Imports:
from aiogram.methods.remove_chat_verification import RemoveChatVerification
alias:
from aiogram.methods import RemoveChatVerification
With specific bot¶
result: bool = await bot(RemoveChatVerification(...))
As reply into Webhook in handler¶
return RemoveChatVerification(...)