mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-08 17:13:56 +00:00
1.2 KiB
1.2 KiB
deleteChatPhoto
Description
Use this method to delete a chat photo. Photos can't be changed for private chats. 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 chat or username of the target channel (in the format @channelusername) |
Response
Type: #!python3 bool
Description: Returns True on success.
Usage
As bot method bot
result: bool = await bot.delete_chat_photo(...)
Method as object
Imports:
from aiogram.methods import DeleteChatPhotofrom aiogram.api.methods import DeleteChatPhotofrom aiogram.api.methods.delete_chat_photo import DeleteChatPhoto
In handlers with current bot
result: bool = await DeleteChatPhoto(...)
With specific bot
result: bool = await bot(DeleteChatPhoto(...))
As reply into Webhook in handler
return DeleteChatPhoto(...)