Email verification
The endpoint to send an email verification is useful to resend the email from Auth0.
By default, the number of retries per day is 3, but it can be changed by adding a row in the configuration table.
You can use post
/configurations
to add a configuration.
The configuration that needs to be added to change the number of retries is "Send Email Verification Quantity" and it has to be in AUTH provider.
You can create it by calling the endpoint in postman and adding this in the body:
Post /configurations
To call /configurations
endpoint, the user needs to be Admin or Super Admin.
Also, every email sent is saved in the database with the Auth0 job ID in the external_id column, so you can have a reference of every email verification requested by the users.
Last updated