Previously with Stormpath i changed a user's password(after validating the current password) like this:
req.user.password = req.body.password;
req.user.save(function (err,res) {
...
});
This doesn't seem to work with Okta. I don't see any error in the response, its just the user object as usual.