Auth0 setting to force password reset after first login?

Thank you for your answer.

I thought another way to force password reset.

I currently implement invitation function using Management API in steps below.

  1. create user(POST /api/v2/users, “verify_email”: False)
  2. create password change ticket( POST /api/v2/tickets/password-change, “mark_email_as_verified”: True)
  3. send email to user who is invited with password-change url.

Is it bad way?

5 Likes