Link Search Menu Expand Document

Method: messages.sendQuickReplyMessages

Back to methods index

Send a quick reply shortcut ».

Parameters:

NameTypeDescriptionRequired
peerUsername, chat ID, Update, Message or InputPeerThe peer where to send the shortcut (users only, for now).Optional
shortcut_idintThe ID of the quick reply shortcut to send.Optional
idArray of intSpecify a subset of messages from the shortcut to send; if empty, defaults to all of them.Yes

Return type: Updates

Can userbots use this method: YES

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$Updates = $MadelineProto->messages->sendQuickReplyMessages(peer: $InputPeer, shortcut_id: $int, id: [$int, $int], );