forward_media_group()

async Client.forward_media_group()

Forward a media group by providing one of the message ids.

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).

  • from_chat_id (int | str) – Unique identifier (int) or username (str) of the source chat where the original message was sent. 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 from_chat_id.

  • message_thread_id (int, optional) – Unique identifier of a message thread to which the message belongs. For supergroups only.

  • disable_notification (bool, optional) – Sends the message silently. Users will receive a notification with no sound.

  • schedule_date (datetime, optional) – Date when the message will be automatically sent.

  • hide_sender_name (bool, optional) – If True, the original author of the message will not be shown.

  • hide_captions (bool, optional) – If True, the original media captions will be removed.

  • protect_content (bool, optional) – Protects the contents of the sent message from forwarding and saving.

  • allow_paid_broadcast (bool, optional) – If True, you will be allowed to send up to 1000 messages per second. Ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot’s balance. For bots only.

  • reply_parameters (ReplyParameters, optional) – Describes reply parameters for the message that is being sent.

  • paid_message_star_count (int, optional) – The number of Telegram Stars the user agreed to pay to send the messages.

  • effect_id (int 64-bit, optional) – Unique identifier of the message effect to be added to the message; for private chats only.

  • repeat_period (int, optional) – Period after which the message will be sent again in seconds.

  • background (bool, optional) – Pass True if the message is a background message.

  • send_as (int | str, optional) – Unique identifier (int) or username (str) of the chat to send the message as.

  • quick_reply_shortcut (int, optional) – Unique identifier of the quick reply shortcut.

Returns:

List of Message – On success, a list of forwarded messages is returned.

Example

# Forward a media group
await app.forward_media_group(to_chat, from_chat, 123)