We are looking for the instruction to provide a direct link, the link format is same: Sign In with Auth0, via email to our customer so that they can sign up an auth0 account directly to our Auth0 App. And after they finish the sign-up, we would like to redirect them to our web page to log into our website via their newly registered auth0 account.
We don’t have a way to provide an invite link - instead you should redirect the user to /authorize where they would login or create an account. Then once they create a new account they are automatically logged in and redirected back to the app.
When I want to invite someone, I create a user behind the scenes and give them a random temporary password. I actually generated a GUID.
Then I manually create an invite email using unrelated code. In the email, I actually include a change password link, which you can generate using the Management API’s CreatePasswordChangeTicket endpoint. I set the time to live to 432000 which is 5 days. If they user fails to “register” in 5 days, I remove the user.
In the auth0 portal, I also tweaked the forgot password form’s language to say something like “Set Password” which works in both the case of these invite emails and an actual forgot password incident.
This took me forever to figure out. But it works nicely.
Sorry for such huge delay in response! We’re doing our best in providing you with best developer support experience out there, but sometimes our bandwidth is not enough comparing to the number of incoming questions.
Wanted to reach out to know if you still require further assistance?