2019-11-16 22:32:05 +02:00
# editMessageText
## Description
Use this method to edit text and game messages. On success, if edited message is sent by the bot, the edited Message is returned, otherwise True is returned.
## Arguments
| Name | Type | Description |
| - | - | - |
2020-04-11 20:15:03 +03:00
| `text` | `#!python3 str` | New text of the message, 1-4096 characters after entities parsing |
2019-11-16 22:32:05 +02:00
| `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 |
2020-05-02 23:01:32 +03:00
| `parse_mode` | `#!python3 Optional[str]` | Optional. Mode for parsing entities in the message text. See formatting options for more details. |
2019-11-16 22:32:05 +02:00
| `disable_web_page_preview` | `#!python3 Optional[bool]` | Optional. Disables link previews for links in this message |
| `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
2020-04-11 20:15:03 +03:00
### As bot method
2019-11-16 22:32:05 +02:00
```python3
result: Union[Message, bool] = await bot.edit_message_text(...)
```
### Method as object
Imports:
2019-12-11 16:52:21 +02:00
- `from aiogram.methods import EditMessageText`
- `from aiogram.api.methods import EditMessageText`
- `from aiogram.api.methods.edit_message_text import EditMessageText`
2019-11-16 22:32:05 +02:00
2020-01-11 22:59:14 +02:00
#### In handlers with current bot
2019-11-16 22:32:05 +02:00
```python3
2020-01-11 22:59:14 +02:00
result: Union[Message, bool] = await EditMessageText(...)
2019-11-16 22:32:05 +02:00
```
#### With specific bot
```python3
2020-01-11 22:59:14 +02:00
result: Union[Message, bool] = await bot(EditMessageText(...))
2019-11-16 22:32:05 +02:00
```
2020-01-11 22:59:14 +02:00
#### As reply into Webhook in handler
2019-11-16 22:32:05 +02:00
```python3
2020-01-11 22:59:14 +02:00
return EditMessageText(...)
2019-11-16 22:32:05 +02:00
```
## Related pages:
- [Official documentation ](https://core.telegram.org/bots/api#editmessagetext )
- [aiogram.types.InlineKeyboardMarkup ](../types/inline_keyboard_markup.md )
- [aiogram.types.Message ](../types/message.md )