Link Search Menu Expand Document

Method: messages.togglePaidReactionPrivacy

Back to methods index

Changes the privacy of already sent paid reactions on a specific message.

Parameters:

NameTypeDescriptionRequired
peerUsername, chat ID, Update, Message or InputPeerThe channelOptional
msg_idintThe ID of the message to which we sent the paid reactionsOptional
privateBoolIf true, makes the current anonymous in the top sender leaderboard for this message; otherwise, does the opposite.Yes

Return type: Bool

Can userbots use this method: YES

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->togglePaidReactionPrivacy(peer: $InputPeer, msg_id: $int, private: $Bool, );