forwardMessages
Use this method to forward multiple messages of any kind. If some of the specified messages can’t be found or forwarded, they are skipped. Service messages and messages with protected content can’t be forwarded. Album grouping is kept for forwarded messages.
Required: chat_id, from_chat_id, message_ids · Optional: 4 parameters
Try it
TypeScript example · @effect-ak/tg-bot-client
import { makeTgBotClient } from "@effect-ak/tg-bot-client"
const client = makeTgBotClient({ bot_token: "YOUR_BOT_TOKEN" })
const result = await client.execute("forward_messages", { chat_id: "YOUR_CHAT_ID", from_chat_id: { /* number | string */ }, message_ids: []})Parameters
chat_id number | string Required
Unique identifier for the target chat or username of the target channel (in the format @channelusername).
from_chat_id number | string Required
Unique identifier for the chat where the original messages were sent (or channel username in the format @channelusername).
message_ids number[] Required
A JSON-serialized list of 1-100 identifiers of messages in the chat from_chat_id to forward. The identifiers must be specified in a strictly increasing order.
message_thread_id number
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.
direct_messages_topic_id number
Identifier of the direct messages topic to which the messages will be forwarded; required if the messages are forwarded to a direct messages chat.
disable_notification boolean
Sends the messages silently. Users will receive a notification with no sound.
protect_content boolean
Protects the contents of the forwarded messages from forwarding and saving.