I am using POST /api/v2/tickets/password-change to generate ticket. I get ticket in the response to reset password.
Response:
{
"ticket": "https://CUSTOM-DOMAIN/u/reset-password?ticket=GUID#"
}
Per my understanding, Auth0 creates this based on CUSTOM-DOMAIN. We cannot set this anywhere in the tenant. Meaning, if I want this to be
https://custom-domain/u/reset-password?ticket=guid#?PARAM1=ONE ← add optional parameter
OR
https://custom-domain/u/SET-PASSWORD?ticket=guid#? ← reset-password to set-password
then it is not possible. This will always be,
Is that correct understanding?