MadelineProtoDocs/old_docs/API_docs_v40/methods/messages_getImportantHistory.md

1.4 KiB

title description image
messages.getImportantHistory Get important message history https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: messages.getImportantHistory

Back to methods index

Get important message history

Parameters:

Name Type Description Required
peer Username, chat ID, Update, Message or InputPeer Peer Optional
max_id int Maximum message ID to fetch Yes
min_id int Minumum message ID to fetch Yes
limit int Number of results to fetch Yes

Return type: messages_Messages

Can bots use this method: YES

MadelineProto Example:

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

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

$messages_Messages = $MadelineProto->messages->getImportantHistory(['peer' => InputPeer, 'max_id' => int, 'min_id' => int, 'limit' => int, ]);

Or, if you're into Lua:

messages_Messages = messages.getImportantHistory({peer=InputPeer, max_id=int, min_id=int, limit=int, })