edit_message_reply_markup()#

Client.edit_message_reply_markup()#

Edit only the reply markup of messages sent by the bot.

Usable by Users Bots
Parameters:
  • chat_id (int | str) – Unique identifier (int) or username (str) of the target chat. For your personal cloud (Saved Messages) you can simply use “me” or “self”. For a contact that exists in your Telegram address book you can use his phone number (str).

  • message_id (int) – Message identifier in the chat specified in chat_id.

  • reply_markup (InlineKeyboardMarkup, optional) – An InlineKeyboardMarkup object.

Returns:

Message – On success, the edited message is returned.

Example

from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton

# Bots only
await app.edit_message_reply_markup(
    chat_id, message_id,
    InlineKeyboardMarkup([[
        InlineKeyboardButton("New button", callback_data="new_data")]]))