CallbackQuery.edit_message_text()¶
- CallbackQuery.edit_message_text()¶
 Edit the text of messages attached to callback queries.
Bound method edit_message_text of
CallbackQuery.- Parameters:¶
 text (
str) – New text of the message.parse_mode (
ParseMode, optional) – By default, texts are parsed using both Markdown and HTML styles. You can combine both syntaxes together.disable_web_page_preview (
bool, optional) – Disables link previews for links in this message.reply_markup (
InlineKeyboardMarkup, optional) – An InlineKeyboardMarkup object.business_connection_id (
str, optional) – Unique identifier of the business connection. for business bots only.
- Returns:¶
 Message|bool– On success, if the edited message was sent by the bot, the edited message is returned, otherwise True is returned (message sent via the bot, as inline query result).- Raises:¶
 RPCError – In case of a Telegram RPC error.