How to customize the error message when siup up an email which already exists?

Hi @nicky.tseng ,

Welcome to the Auth0 Community!

We can customize the error message in the signup page with the Auth0 Management API endpoint

PUT https://{your domain}/api/v2/prompts/signup/custom-text/en

{
    "signup":{
        "auth0-users-validation":"your customized error message"
    }
}

This is how it looks after sending the request.

Reference:

Hope this helps!

2 Likes