I have an API that calls Auth0’s dbconnections/change_password
to send reset password links to the client via email. However, for records purposes we also want to record the actual link that Auth0 sends to the client. Is it possible to do that?
What we did previously is to trigger a password change ticket API (tickets/password-change
) to generate the link for records purposes, then make a call to dbconnections/change_password
to send reset password link to the client but the links generated by these two were different and one invalidates another.
TIA!