Link Search Menu Expand Document

Method: messages.editChatAdmin

Back to methods index

Make a user admin in a basic group.

Parameters:

NameTypeDescriptionRequired
chat_idUsername, chat ID, Update, Message or InputPeerOptional
user_idUsername, chat ID, Update, Message or InputUserThe user to make adminOptional
is_adminBoolWhether to make them adminYes

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->editChatAdmin(chat_id: $InputPeer, user_id: $InputUser, is_admin: $Bool, );