editMessageMedia

Edit a message’s media.

Parameters

chatId: ID

The identifier of the chat that contains the message.

messageId: number

The message’s identifier.

media: InputMedia

The new media of the message.

businessConnectionId?: string

The identifier of a business connection ID to perform the action on. Bot-only.

replyMarkup?: ReplyMarkup

The reply markup of the message. Bot-only.

Result

Syntax

// Required parameters only.
await client.editMessageMedia(chatId, messageId, media);

// Required parameters + optional parameters.
// Any of the optional parameters can be omitted.
await client.editMessageMedia(chatId, messageId, media, {
    businessConnectionId,
    replyMarkup,
});