Create a sms connection user with custom user_id

module.exports = function (user, context, cb) {
  var response = {};

  user.name = 'changedName';
  response.user = user;
 
  cb(null, response);
};

We have tried Adding a Pre User Registration Hook as well as mentioned above code snippet , but it does work for us .