I know how to set the “login” page template using the Management API (Auth0 Management API v2). However, I cannot find the API endpoint to define the “password reset” page. How to do that?
Hi @mbork ,
If you want to customize the password reset page, please try the endpoint
PUT https://{{your-domain}}/api/v2/prompts/reset-password/custom-text/en
Sample scripts for customize the reset password success page.
{
"reset-password-success":{
"eventTitle":"Password Changed!",
"description": "Your password has been changed successfully.",
"buttonText":"Back to <%= "${clientName}" %>"
}
}
Ref:
Hope this helps!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.