Link Search Menu Expand Document

Method: channels.editAdmin

Back to methods index

Modify the admin rights of a user in a supergroup/channel.

Parameters:

NameTypeDescriptionRequired
channelUsername, chat ID, Update, Message or InputChannelThe supergroup/channel.Optional
user_idUsername, chat ID, Update, Message or InputUserThe ID of the user whose admin rights should be modifiedOptional
admin_rightsChatAdminRightsThe admin rightsYes
rankstringIndicates the role (rank) of the admin in the group: just an arbitrary stringOptional

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->editAdmin(channel: $InputChannel, user_id: $InputUser, admin_rights: $ChatAdminRights, rank: 'string', );