Resend Verification Emails
If you need to resend a verification email to a user, you can resend it using the Auth0 User Management Dashboard or the 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.
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"
}
Was this helpful?
Response example
{
"type":"verification_email",
"status":"pending",
"created_at":"2022-03-31T23:08:05.612Z",
"id":"job_PyfpRHlmpkSoDmCv"
}
Was this helpful?
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"
}
Was this helpful?