<div dir="ltr">Hi,<div><br></div><div>I would like to use the admin client to update a user in order to force him to change his password next time he logs in ?</div><div><br></div><div>So far i have failed miserably to do it so i was wondering if this is at all possible ?</div><div><br></div><div>This is basically what am doing :</div><div><br></div><div><div>        Keycloak keycloak = Keycloak.getInstance(authServer, &quot;example&quot;, &quot;examples-admin-client&quot;, &quot;password&quot;, &quot;examples-admin-client&quot;, &quot;password&quot;);</div><div>        RealmResource realm = keycloak.realm(&quot;example&quot;);</div><div>        UsersResource users = realm.users();</div><div>        List&lt;UserRepresentation&gt; users_ = users.search(&quot;&quot;, 0, 1000000); // This gets me all my users</div><div>        for (UserRepresentation user_ : users_) {</div><div>            if (user_.getUsername().equals(&quot;examples-admin-client&quot;)) {</div><div>                user_.setEmailVerified(true);</div><div>            }</div><div>        }</div><div>        RealmRepresentation realm_ = realm.toRepresentation();</div><div>        realm_.setUsers(users_);</div><div>        realm.update(realm_);</div></div><div><br></div><div>Does the method update of realm support users update ?</div><div><br></div><div>Thanks for any help on this.</div></div>