peyk.platforms.telegram.methods.copy_messages¶
- async peyk.platforms.telegram.methods.copy_messages(self, chat_id: int | str, from_chat_id: int | str, message_ids: Sequence[int], *, message_thread_id: int | None = None, disable_notification: bool | None = None, protect_content: bool | None = None, remove_caption: bool | None = None) List[MessageId][source]¶
Use this method to copy messages of any kind. If some of the specified messages can’t be found or copied, they are skipped. Service messages, paid media messages, giveaway messages, giveaway winners messages, and invoice messages can’t be copied. A quiz poll can be copied only if the value of the field correct_option_id is known to the bot. The method is analogous to the method forwardMessages, but the copied messages don’t have a link to the original message. Album grouping is kept for copied messages. On success, an Array of MessageId of the sent messages is returned.
- Parameters:
chat_id – Unique identifier for the target chat or username of the target bot, supergroup or channel in the format @username
from_chat_id – Unique identifier for the chat where the original messages were sent (or username of the target bot, supergroup or channel in the format @username)
message_ids – A JSON-serialized list of 1-100 identifiers of messages in the chat from_chat_id to copy. The identifiers must be specified in a strictly increasing order.
message_thread_id – Unique identifier for the target message thread (topic) of a forum; for forum supergroups and private chats of bots with forum topic mode enabled only
disable_notification – Sends the messages silently. Users will receive a notification with no sound.
protect_content – Protects the contents of the sent messages from forwarding and saving
remove_caption – Pass True to copy the messages without their captions
- Returns:
Result returned by Telegram on successful execution.
- Return type:
List[MessageId]