Telegram\Bot\Api::kickChatMember PHP Метод

kickChatMember() публичный Метод

In the case of supergroups, the user will not be able to return to the group on their own using invite links etc., unless unbanned first. The bot must be an administrator in the group for this to work. $params = [ 'chat_id' => '', 'user_id' => '', ];
public kickChatMember ( array $params ) : boolean
$params array
Результат boolean
    public function kickChatMember(array $params)
    {
        $this->post('kickChatMember', $params);
        return true;
    }