Direct link to user details in User Management Dashboard

Hi there,

I have an admin section in my app in which I want to provide a button which redirects the admin user to the user detail page in the Auth0 User Management. Unfortunately the URL structure of this link doesn’t include the user ID or something similar which would make it easy to generate the link.

The current structure looks like this: https://manage.auth0.com/dashboard/{Region}/{Tenant}/users/{Hash}

The last part of the link ({Hash}) doesn’t math the user id. Is there any way to get this hash via the management api ot rhe id token (or somewhere else)?

Greetings,
Hannes

Hi @hannes1,

Thanks for reaching out to the Auth0 Community!

I understand that you would like to redirect admins on your app to your Auth0 Tenant Dashboard’s User Management section.

Note that for your admins to have access to the User Management page, they must first be invited to be a tenant admin.

Once invited as a tenant admin, they can access a specific user’s User Detail page is by referencing their user_id using the following syntax https://manage.auth0.com/dashboard/REGION/TENANT/users/user_id

For example: https://manage.auth0.com/dashboard/REGION/TENANT/users/auth0|1234567890

I have tested this and can confirm that it works.

Hoped this helps!

Please let me know if you have additional questions. I’d be happy to help.

Thanks.

1 Like

Thanks for the quick reply! I missed the auth0| part of the user id but it works exactly as you stated!

1 Like