2022-02-23 16:30:26 +01:00
<!DOCTYPE html>
< html class = "" >
< head >
< meta charset = "utf-8" >
< title > Scheduled messages< / title >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta property = "description" content = "Telegram allows scheduling messages" >
< meta property = "og:title" content = "Scheduled messages" >
< meta property = "og:image" content = "" >
< meta property = "og:description" content = "Telegram allows scheduling messages" >
2022-04-21 15:52:36 +02:00
< link rel = "icon" type = "image/svg+xml" href = "/img/website_icon.svg?4" >
< link rel = "apple-touch-icon" sizes = "180x180" href = "/img/apple-touch-icon.png" >
< link rel = "icon" type = "image/png" sizes = "32x32" href = "/img/favicon-32x32.png" >
< link rel = "icon" type = "image/png" sizes = "16x16" href = "/img/favicon-16x16.png" >
< link rel = "alternate icon" href = "/img/favicon.ico" type = "image/x-icon" / >
2022-02-23 16:30:26 +01:00
< link href = "/css/bootstrap.min.css?3" rel = "stylesheet" >
2022-05-06 17:51:35 +02:00
< link href = "/css/telegram.css?230" rel = "stylesheet" media = "screen" >
2022-02-23 16:30:26 +01:00
< style >
< / style >
< / head >
< body class = "preload" >
< div class = "dev_page_wrap" >
< div class = "dev_page_head navbar navbar-static-top navbar-tg" >
< div class = "navbar-inner" >
< div class = "container clearfix" >
< ul class = "nav navbar-nav navbar-right hidden-xs" > < li class = "navbar-twitter" > < a href = "https://twitter.com/telegram" target = "_blank" data-track = "Follow/Twitter" onclick = "trackDlClick(this, event)" > < i class = "icon icon-twitter" > < / i > < span > Twitter< / span > < / a > < / li > < / ul >
< ul class = "nav navbar-nav" >
< li > < a href = "//telegram.org/" > Home< / a > < / li >
< li class = "hidden-xs" > < a href = "//telegram.org/faq" > FAQ< / a > < / li >
< li class = "hidden-xs" > < a href = "//telegram.org/apps" > Apps< / a > < / li >
< li class = "active" > < a href = "/api" > API< / a > < / li >
< li class = "" > < a href = "/mtproto" > Protocol< / a > < / li >
< li class = "" > < a href = "/schema" > Schema< / a > < / li >
< / ul >
< / div >
< / div >
< / div >
< div class = "container clearfix" >
< div class = "dev_page" >
< div id = "dev_page_content_wrap" class = " " >
< div class = "dev_page_bread_crumbs" > < ul class = "breadcrumb clearfix" > < li > < a href = "/api" > API< / a > < / li > < i class = "icon icon-breadcrumb-divider" > < / i > < li > < a href = "/api/scheduled-messages" > Scheduled messages< / a > < / li > < / ul > < / div >
< h1 id = "dev_page_title" > Scheduled messages< / h1 >
< div id = "dev_page_content" > < p > Telegram allows scheduling messages.< / p >
2022-03-10 21:15:11 +01:00
< pre > < code > < a href = '/constructor/message' > message< / a > #38116ee0 flags:< a href = '/type/%23' > #< / a > out:flags.1?< a href = '/constructor/true' > true< / a > mentioned:flags.4?< a href = '/constructor/true' > true< / a > media_unread:flags.5?< a href = '/constructor/true' > true< / a > silent:flags.13?< a href = '/constructor/true' > true< / a > post:flags.14?< a href = '/constructor/true' > true< / a > from_scheduled:flags.18?< a href = '/constructor/true' > true< / a > legacy:flags.19?< a href = '/constructor/true' > true< / a > edit_hide:flags.21?< a href = '/constructor/true' > true< / a > pinned:flags.24?< a href = '/constructor/true' > true< / a > noforwards:flags.26?< a href = '/constructor/true' > true< / a > id:< a href = '/type/int' > int< / a > from_id:flags.8?< a href = '/type/Peer' > Peer< / a > peer_id:< a href = '/type/Peer' > Peer< / a > fwd_from:flags.2?< a href = '/type/MessageFwdHeader' > MessageFwdHeader< / a > via_bot_id:flags.11?< a href = '/type/long' > long< / a > reply_to:flags.3?< a href = '/type/MessageReplyHeader' > MessageReplyHeader< / a > date:< a href = '/type/int' > int< / a > message:< a href = '/type/string' > string< / a > media:flags.9?< a href = '/type/MessageMedia' > MessageMedia< / a > reply_markup:flags.6?< a href = '/type/ReplyMarkup' > ReplyMarkup< / a > entities:flags.7?< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/MessageEntity' > MessageEntity< / a > > views:flags.10?< a href = '/type/int' > int< / a > forwards:flags.10?< a href = '/type/int' > int< / a > replies:flags.23?< a href = '/type/MessageReplies' > MessageReplies< / a > edit_date:flags.15?< a href = '/type/int' > int< / a > post_author:flags.16?< a href = '/type/string' > string< / a > grouped_id:flags.17?< a href = '/type/long' > long< / a > reactions:flags.20?< a href = '/type/MessageReactions' > MessageReactions< / a > restriction_reason:flags.22?< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/RestrictionReason' > RestrictionReason< / a > > ttl_period:flags.25?< a href = '/type/int' > int< / a > = < a href = '/type/Message' > Message< / a > ;
2022-02-23 16:30:26 +01:00
< a href = '/constructor/updateNewScheduledMessage' > updateNewScheduledMessage< / a > #39a51dfb message:< a href = '/type/Message' > Message< / a > = < a href = '/type/Update' > Update< / a > ;
< a href = '/constructor/updateDeleteScheduledMessages' > updateDeleteScheduledMessages< / a > #90866cee peer:< a href = '/type/Peer' > Peer< / a > messages:< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/int' > int< / a > > = < a href = '/type/Update' > Update< / a > ;
---functions---
2022-03-10 21:15:11 +01:00
< a href = '/method/messages.sendMessage' > messages.sendMessage< / a > #d9d75a4 flags:< a href = '/type/%23' > #< / a > no_webpage:flags.1?< a href = '/constructor/true' > true< / a > silent:flags.5?< a href = '/constructor/true' > true< / a > background:flags.6?< a href = '/constructor/true' > true< / a > clear_draft:flags.7?< a href = '/constructor/true' > true< / a > noforwards:flags.14?< a href = '/constructor/true' > true< / a > peer:< a href = '/type/InputPeer' > InputPeer< / a > reply_to_msg_id:flags.0?< a href = '/type/int' > int< / a > message:< a href = '/type/string' > string< / a > random_id:< a href = '/type/long' > long< / a > reply_markup:flags.2?< a href = '/type/ReplyMarkup' > ReplyMarkup< / a > entities:flags.3?< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/MessageEntity' > MessageEntity< / a > > schedule_date:flags.10?< a href = '/type/int' > int< / a > send_as:flags.13?< a href = '/type/InputPeer' > InputPeer< / a > = < a href = '/type/Updates' > Updates< / a > ;
2022-02-23 16:30:26 +01:00
2022-03-10 21:15:11 +01:00
< a href = '/method/messages.sendMedia' > messages.sendMedia< / a > #e25ff8e0 flags:< a href = '/type/%23' > #< / a > silent:flags.5?< a href = '/constructor/true' > true< / a > background:flags.6?< a href = '/constructor/true' > true< / a > clear_draft:flags.7?< a href = '/constructor/true' > true< / a > noforwards:flags.14?< a href = '/constructor/true' > true< / a > peer:< a href = '/type/InputPeer' > InputPeer< / a > reply_to_msg_id:flags.0?< a href = '/type/int' > int< / a > media:< a href = '/type/InputMedia' > InputMedia< / a > message:< a href = '/type/string' > string< / a > random_id:< a href = '/type/long' > long< / a > reply_markup:flags.2?< a href = '/type/ReplyMarkup' > ReplyMarkup< / a > entities:flags.3?< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/MessageEntity' > MessageEntity< / a > > schedule_date:flags.10?< a href = '/type/int' > int< / a > send_as:flags.13?< a href = '/type/InputPeer' > InputPeer< / a > = < a href = '/type/Updates' > Updates< / a > ;< / code > < / pre >
2022-02-23 16:30:26 +01:00
< p > To schedule a message, simply provide a future unixtime in the < code > schedule_date< / code > flag of < a href = "/method/messages.sendMessage" > messages.sendMessage< / a > or < a href = "/method/messages.sendMedia" > messages.sendMedia< / a > . < / p >
< p > The specified message or media will be added to a server-side schedule queue for the current chat, and will be automatically sent at the specified time.< br >
The method call generates the following updates:< / p >
< ul >
< li > Immediately, an < a href = "/constructor/updateNewScheduledMessage" > updateNewScheduledMessage< / a > , with ID equal to the ID of the message in the schedule queue for the current chat (each PM, chat, supergroup and channel has its own schedule queue and ID sequence).< / li >
< li > At < code > schedule_date< / code > , an < a href = "/constructor/updateNewMessage" > updateNewMessage< / a > or < a href = "/constructor/updateNewChannelMessage" > updateNewChannelMessage< / a > with the < code > from_scheduled< / code > flag set, indicating to the sender that the specified scheduled message was sent. < / li >
< li > At < code > schedule_date< / code > , an < a href = "/constructor/updateDeleteScheduledMessages" > updateDeleteScheduledMessages< / a > , indicating that the message was flushed from the schedule queue.< / li >
< / ul >
< p > If the < code > schedule_date< / code > is less than 10 seconds in the future, the message will be sent immediately, generating a normal < a href = "/constructor/updateNewMessage" > updateNewMessage< / a > /< a href = "/constructor/updateNewChannelMessage" > updateNewChannelMessage< / a > . < / p >
< h3 > < a class = "anchor" href = "#manipulating-the-schedule-queue" id = "manipulating-the-schedule-queue" name = "manipulating-the-schedule-queue" > < i class = "anchor-icon" > < / i > < / a > Manipulating the schedule queue< / h3 >
< pre > < code > < a href = '/constructor/updateNewScheduledMessage' > updateNewScheduledMessage< / a > #39a51dfb message:< a href = '/type/Message' > Message< / a > = < a href = '/type/Update' > Update< / a > ;
< a href = '/constructor/updateDeleteScheduledMessages' > updateDeleteScheduledMessages< / a > #90866cee peer:< a href = '/type/Peer' > Peer< / a > messages:< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/int' > int< / a > > = < a href = '/type/Update' > Update< / a > ;
---functions---
< a href = '/method/messages.getScheduledHistory' > messages.getScheduledHistory< / a > #f516760b peer:< a href = '/type/InputPeer' > InputPeer< / a > hash:< a href = '/type/long' > long< / a > = < a href = '/type/messages.Messages' > messages.Messages< / a > ;
< a href = '/method/messages.getScheduledMessages' > messages.getScheduledMessages< / a > #bdbb0464 peer:< a href = '/type/InputPeer' > InputPeer< / a > id:< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/int' > int< / a > > = < a href = '/type/messages.Messages' > messages.Messages< / a > ;
< a href = '/method/messages.sendScheduledMessages' > messages.sendScheduledMessages< / a > #bd38850a peer:< a href = '/type/InputPeer' > InputPeer< / a > id:< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/int' > int< / a > > = < a href = '/type/Updates' > Updates< / a > ;
< a href = '/method/messages.deleteScheduledMessages' > messages.deleteScheduledMessages< / a > #59ae2b16 peer:< a href = '/type/InputPeer' > InputPeer< / a > id:< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/int' > int< / a > > = < a href = '/type/Updates' > Updates< / a > ;
< a href = '/method/messages.editMessage' > messages.editMessage< / a > #48f71778 flags:< a href = '/type/%23' > #< / a > no_webpage:flags.1?< a href = '/constructor/true' > true< / a > peer:< a href = '/type/InputPeer' > InputPeer< / a > id:< a href = '/type/int' > int< / a > message:flags.11?< a href = '/type/string' > string< / a > media:flags.14?< a href = '/type/InputMedia' > InputMedia< / a > reply_markup:flags.2?< a href = '/type/ReplyMarkup' > ReplyMarkup< / a > entities:flags.3?< a href = '/type/Vector%20t' > Vector< / a > < < a href = '/type/MessageEntity' > MessageEntity< / a > > schedule_date:flags.15?< a href = '/type/int' > int< / a > = < a href = '/type/Updates' > Updates< / a > ;< / code > < / pre >
< p > Clients can manually edit the schedule queue of a certain chat, providing the scheduled message ID obtained from < a href = "/constructor/updateNewScheduledMessage" > updateNewScheduledMessage< / a > . < / p >
< ul >
< li > < a href = "/method/messages.getScheduledHistory" > messages.getScheduledHistory< / a > obtains all messages in the schedule queue for the specified chat< / li >
< li > < a href = "/method/messages.getScheduledMessages" > messages.getScheduledMessages< / a > obtains information about specific messages in the schedule queue for the specified chat< / li >
< li > < a href = "/method/messages.sendScheduledMessages" > messages.sendScheduledMessages< / a > flushes messages from the schedule queue, sending them immediately< / li >
< li > < a href = "/method/messages.deleteScheduledMessages" > messages.deleteScheduledMessages< / a > deletes messages from the schedule queue, without sending them< / li >
< li > < a href = "/method/messages.editMessage" > messages.editMessage< / a > can be used to modify the scheduled date of a specific message in a schedule queue. < / li >
< / ul >
< p > Modifying scheduled messages will generate an < a href = "/constructor/updateNewScheduledMessage" > updateNewScheduledMessage< / a > with the same ID, and updated information.< br >
Deleting scheduled messages will generate an < a href = "/constructor/updateDeleteScheduledMessages" > updateDeleteScheduledMessages< / a > . < / p > < / div >
< / div >
< / div >
< / div >
< div class = "footer_wrap" >
< div class = "footer_columns_wrap footer_desktop" >
< div class = "footer_column footer_column_telegram" >
< h5 > Telegram< / h5 >
< div class = "footer_telegram_description" > < / div >
Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed.
< / div >
< div class = "footer_column" >
< h5 > < a href = "//telegram.org/faq" > About< / a > < / h5 >
< ul >
< li > < a href = "//telegram.org/faq" > FAQ< / a > < / li >
< li > < a href = "//telegram.org/blog" > Blog< / a > < / li >
< li > < a href = "//telegram.org/jobs" > Jobs< / a > < / li >
< / ul >
< / div >
< div class = "footer_column" >
< h5 > < a href = "//telegram.org/apps#mobile-apps" > Mobile Apps< / a > < / h5 >
< ul >
< li > < a href = "//telegram.org/dl/ios" > iPhone/iPad< / a > < / li >
< li > < a href = "//telegram.org/dl/android" > Android< / a > < / li >
< li > < a href = "//telegram.org/dl/wp" > Windows Phone< / a > < / li >
< / ul >
< / div >
< div class = "footer_column" >
< h5 > < a href = "//telegram.org/apps#desktop-apps" > Desktop Apps< / a > < / h5 >
< ul >
< li > < a href = "//desktop.telegram.org/" > PC/Mac/Linux< / a > < / li >
< li > < a href = "//macos.telegram.org/" > macOS< / a > < / li >
< li > < a href = "//telegram.org/dl/web" > Web-browser< / a > < / li >
< / ul >
< / div >
< div class = "footer_column footer_column_platform" >
< h5 > < a href = "/" > Platform< / a > < / h5 >
< ul >
< li > < a href = "/api" > API< / a > < / li >
< li > < a href = "//translations.telegram.org/" > Translations< / a > < / li >
< li > < a href = "//instantview.telegram.org/" > Instant View< / a > < / li >
< / ul >
< / div >
< / div >
< div class = "footer_columns_wrap footer_mobile" >
< div class = "footer_column" >
< h5 > < a href = "//telegram.org/faq" > About< / a > < / h5 >
< / div >
< div class = "footer_column" >
< h5 > < a href = "//telegram.org/blog" > Blog< / a > < / h5 >
< / div >
< div class = "footer_column" >
< h5 > < a href = "//telegram.org/apps" > Apps< / a > < / h5 >
< / div >
< div class = "footer_column" >
< h5 > < a href = "/" > Platform< / a > < / h5 >
< / div >
< div class = "footer_column" >
< h5 > < a href = "https://twitter.com/telegram" target = "_blank" data-track = "Follow/Twitter" onclick = "trackDlClick(this, event)" > Twitter< / a > < / h5 >
< / div >
< / div >
< / div >
< / div >
2022-04-19 13:29:30 +02:00
< script src = "/js/main.js?46" > < / script >
2022-02-23 16:30:26 +01:00
< script > b a c k T o T o p I n i t ( " G o u p " ) ;
removePreloadInit();
< / script >
< / body >
< / html >