Proper Redirect URL after password change

Hi everyone,
We have 4 applications: 3 - SPA and 1 machine to machine, one DB connection.
Users are created through the Management API.
After a user is created, we create a password reset ticket with another Management API call.

After password is changed, we need to redirect the user to a certain application login screen. It is one of those SPA apps. How can we do that?
When we generate a token for the Management API, it only accepts the client id and secret from the machine to machine application and therefore user gets redirected that application and not to the SPA that we need.

Hi @vic.kos,

Welcome to the Auth0 Community!

To redirect a user to a specified page after going through the Password Reset Ticket issued by Management API you can set up a result_url passed in the body of the request to create the ticket. You can check out this Knowledge Article - Password Change Redirect Behavior for more information.

I hope this helps!
Thanks,
Remus

1 Like

Hi Remus,
Thank you, the video in the article was helpful!