Hello, our Auth0 tenant is configured to be invite-only. Following the Auth0 documentation I see it’s recommended to use the “change password” flow to invite users:
- Create the user via API
- Send an “invite” e-mail using the “change password email template” via API
- User lands on the universal login page for “changing/resetting password”
Step 2 is customized into an “invite email” using email_verified
. As it’ll first be verified once the user sets a password, this works fine.
But how can we make sure the user lands on an invite screen, instead of the change password screen? Using universal login you can not customize it.
The guide says to add a #type=invite
param to the password reset ticket URL, but I don’t see that changing anything.
I wonder why the invite-flow isn’t an integrated part of Auth0, when you’re not using organisations. Why is it recommended to use ‘change password’ screen for invites?! Can’t you use the “User Invitation” email template?
These post asks similar questions, but no answers yet.