Link Search Menu Expand Document

Method: messages.toggleStickerSets

Back to methods index

Apply changes to multiple stickersets

Parameters:

NameTypeDescriptionRequired
uninstallBoolUninstall the specified stickersetsOptional
archiveBoolArchive the specified stickersetsOptional
unarchiveBoolUnarchive the specified stickersetsOptional
stickersetsArray of InputStickerSetStickersets to act uponYes

Return type: Bool

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

$Bool = $MadelineProto->messages->toggleStickerSets(uninstall: $Bool, archive: $Bool, unarchive: $Bool, stickersets: [$InputStickerSet, $InputStickerSet], );