How to disable "Include Email In Redirect"?

Hello,
It is possible to disable the “includeEmailInRedirect” flag for your email template by using the “Patch an Email Template” PATCH /api/v2/email-templates/{templateName} (Auth0 Management API v2) endpoint in the Management API.

You will need to select the template you would like to change and include the following in the body of this call:
{ "includeEmailInRedirect": false }

2 Likes