Accessing Auth0 Management API in rules vs hooks

We’re looking at using some of the extension points in auth0. One thing we’d like to do is update the user’s email after authentication where the email is the user name. The steps we’re trying to implement are:

  1. User requests to change email
  2. New email is stored in user_metadata
  3. User is directed to hosted page authenticate with current credentials
  4. On successful authentication either a rule or a hook fires to update the users email address with the value stored in their metadata and set email_verified to false.

The reason we like this is because:

  • we want the user to auth before changing their email to prevent an attacker using an existing session to change the email
  • we want the auth to happen via universal login/hosted page
  • we want to minimize any sharing of our auth0 secrets.

As far as I can tell we can do this via rules or hooks and hooks are the new way to extend auth0.

It looks like it’s fairly easy to access the Management API in a rule with the required scope to update the users email here as described here:

This is because rules runtime provides an access token with the right scopes to do this. And the great thing is, we don’t have to share our secrets with anything to do so.

Can we do a similar thing with hooks?

1 Like

Hi @eric.jutrzenka. Unfortunately, hooks don’t have this feature. I encourage you to describe this as a feature request in Auth0: Secure access for everyone. But not just anyone. to be analyzed by the Product team.