Hi there.
I’d like to know if it’s possible to create users through the API without password. Then the users gets an email with a link for setting up the password .
Is this possible ?
1 Like
Hey there!
Maybe that will answer your question:
Hi @fabs .
You can create users without a password when carrying out a bulk import into a database connection, they would then need to go through the password reset flow before they could login.
https://auth0.com/docs/users/bulk-user-imports
Please see the documentation here on a way you could implement an invite flow using our current feature set:
Using the above you re-purpose the reset password flow as a “choose your new account password”, and you can customise the Password Reset page so…
There were other people asking for that in the past so make sure to research our community a bit. Thank you!
That does’t answer my question. That post is related to bulk import.
I found this work around … creating a hook for send a reset password (triggered every time a user is created)
Hi @vignesh.ramesh ,
Here is an approach you could take to send a password reset email instead of email verification when adding users :
1. Disable the verification email template
Go to Emails > Email Templates in your Auth0 dashboard. Toggle off Status on the Verification Email template
[turn-off-verification-email]
2. Create a Hook to send the reset password email on Post User Registration
Go to Hooks in your Auth0 dashboard. Click the “+ CREATE A HOOK” button. Give the hook a name, se…
Is there another option ? Like add some link in the Welcome template …