Is it possible to send messages to Telegram's "Saved Messages" through the API?

Viewed 1973

Is it possible to send a message via Telegram API to the Saved Messages chat?

I have been looking all over the internet but could not find any information. I would think this would be possible.

1 Answers

If you mean the main mtproto api, yes you can send yourself a message by your id or username and telegram will place it in saved messages.

You did not mention which API you use, but this is how you do it in Telethon:

client.send_message("me", "hello")

But if you mean bot api, it's not possible for bots to send messages to your saved message.

Related