Reputation: 157
I'm using Management API V2 to create users and I'm setting their password in the creation process. After that they're receiving an invitation email to confirm their email address because I'm setting the parameter "verify_email" to true.
What I need to do is:
I looked up in the community before asking, and I found that I can trigger password reset flow upon the creation, is there any different way to do it? because this doesn't look like the correct way to do it, there should be a way to do so.
Thanks
Upvotes: 0
Views: 1077
Reputation: 1763
Triggering reset password email is the right approach. You can use authentication API to send the reset password email. https://auth0.com/docs/api/authentication#change-password
More options are described here: https://auth0.com/docs/connections/database/password-change
Upvotes: 3