Documentation Index
Fetch the complete documentation index at: https://docs-dev.auth0-mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
If you need to resend a verification email to a user, you can resend it using the Auth0 User Management Dashboard or the Auth0 .
Use Auth0 Dashboard
Use Auth0 Management API
You can use the Auth0 Dashboard to resend a verification email to a user.
- In the Dashboard, go to User Management > Users.
- Select the user.
- Select the Actions dropdown menu, and then select Send Verification Email.
If you enable Multiple Custom Domains, you have the option Domain to select the notification domain for your tenant. You can use the Auth0 Management API to resend a verification email to a user.
- Get a Management API access token with the
update:users scope.
- Call the Management API Send an email address verification email endpoint with the user’s
user_id.
Request example
{
"user_id":"auth0|62463410c0242d00699461c8"
}
Response example
{
"type":"verification_email",
"status":"pending",
"created_at":"2022-03-31T23:08:05.612Z",
"id":"job_PyfpRHlmpkSoDmCv"
}
If you enable Multiple Custom Domains, you need to include the auth0-custom-domain HTTP header. To learn more, review Multiple Custom Domains.Check job status
You can check the status of the job created with the Management API Send an email address verification email endpoint.
- Get the job’s
id (returned in the response).
- Call the Management API Get a job endpoint with the job’s
id.
Response example
{
"type":"verification_email",
"status":"completed",
"created_at":"2022-03-31T23:08:05.612Z",
"id":"job_PyfpRHlmpkSoDmCv"
}