Link Search Menu Expand Document

Method: channels.reorderPinnedForumTopics

Back to methods index

Reorder pinned forum topics

Parameters:

NameTypeDescriptionRequired
forceBoolIf set, topics pinned server-side but not present in the order field will be unpinned.Optional
channelUsername, chat ID, Update, Message or InputChannelSupergroup IDOptional
orderArray of intTopic IDs »Yes

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->channels->reorderPinnedForumTopics(force: $Bool, channel: $InputChannel, order: [$int, $int], );