mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 18:01:04 +00:00
* AIOG-T-20 Bot API 4.8 * AIOG-T-20 Update aliases * AIOG-T-20 Add parse mode passing in sendPoll method * AIOG-T-20 Small changes in docs * AIOG-T-20 Revert overriding remove keyboard default value and add tests * AIOG-T-20 Bot API 4.8
2.1 KiB
2.1 KiB
editMessageCaption
Description
Use this method to edit captions of messages. On success, if edited message is sent by the bot, the edited Message is returned, otherwise True is returned.
Arguments
| Name | Type | Description |
|---|---|---|
chat_id |
#!python3 Optional[Union[int, str]] |
Optional. Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) |
message_id |
#!python3 Optional[int] |
Optional. Required if inline_message_id is not specified. Identifier of the message to edit |
inline_message_id |
#!python3 Optional[str] |
Optional. Required if chat_id and message_id are not specified. Identifier of the inline message |
caption |
#!python3 Optional[str] |
Optional. New caption of the message, 0-1024 characters after entities parsing |
parse_mode |
#!python3 Optional[str] |
Optional. Mode for parsing entities in the message caption. See formatting options for more details. |
reply_markup |
#!python3 Optional[InlineKeyboardMarkup] |
Optional. A JSON-serialized object for an inline keyboard. |
Response
Type: #!python3 Union[Message, bool]
Description: On success, if edited message is sent by the bot, the edited Message is returned, otherwise True is returned.
Usage
As bot method
result: Union[Message, bool] = await bot.edit_message_caption(...)
Method as object
Imports:
from aiogram.methods import EditMessageCaptionfrom aiogram.api.methods import EditMessageCaptionfrom aiogram.api.methods.edit_message_caption import EditMessageCaption
In handlers with current bot
result: Union[Message, bool] = await EditMessageCaption(...)
With specific bot
result: Union[Message, bool] = await bot(EditMessageCaption(...))
As reply into Webhook in handler
return EditMessageCaption(...)