Link Search Menu Expand Document

Method: messages.readHistory

Back to methods index

Marks message history as read.

Parameters:

NameTypeDescriptionRequired
peerUsername, chat ID, Update, Message or InputPeerTarget user or groupOptional
max_idintIf a positive value is passed, only messages with identifiers less or equal than the given one will be readOptional

Return type: messages.AffectedMessages

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();

$messages_AffectedMessages = $MadelineProto->messages->readHistory(peer: $InputPeer, max_id: $int, );