Link Search Menu Expand Document

Method: messages.updatePinnedMessage

Back to methods index

Pin a message

Parameters:

NameTypeDescriptionRequired
silentBoolPin the message silently, without triggering a notificationOptional
unpinBoolWhether the message should unpinned or pinnedOptional
pm_onesideBoolWhether the message should only be pinned on the local side of a one-to-one chatOptional
peerUsername, chat ID, Update, Message or InputPeerThe peer where to pin the messageOptional
idintThe message to pin or unpinOptional

Return type: Updates

Can bots use this method: YES

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->updatePinnedMessage(silent: $Bool, unpin: $Bool, pm_oneside: $Bool, peer: $InputPeer, id: $int, );