setChatPhoto

Returns: bool

class aiogram.methods.set_chat_photo.SetChatPhoto(*, chat_id: int | str, photo: InputFile, **extra_data: Any)[source]

Use this method to set a new profile photo for the chat. 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 administrator rights. Returns True on success.

Source: https://core.telegram.org/bots/api#setchatphoto

chat_id: int | str

Unique identifier for the target chat or username of the target channel (in the format @channelusername)

model_computed_fields: ClassVar[Dict[str, ComputedFieldInfo]] = {}

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_post_init(context: Any, /) None

We need to both initialize private attributes and call the user-defined model_post_init method.

photo: InputFile

New chat photo, uploaded using multipart/form-data

Usage

As bot method

result: bool = await bot.set_chat_photo(...)

Method as object

Imports:

  • from aiogram.methods.set_chat_photo import SetChatPhoto

  • alias: from aiogram.methods import SetChatPhoto

With specific bot

result: bool = await bot(SetChatPhoto(...))

As shortcut from received object