Link Search Menu Expand Document

Method: chatlists.getLeaveChatlistSuggestions

Back to methods index

Returns identifiers of pinned or always included chats from a chat folder imported using a chat folder deep link », which are suggested to be left when the chat folder is deleted.

Parameters:

NameTypeDescriptionRequired
chatlistInputChatlistFolder IDYes

Return type: Vector_of_Peer

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

$Vector_of_Peer = $MadelineProto->chatlists->getLeaveChatlistSuggestions(chatlist: $InputChatlist, );