Resend Verification Email
Resends a verification link to the user's email. Useful when the original link is expired or was never received.
Bot Protection
This endpoint requires a valid Cloudflare Turnstile token when bot protection is enabled. See the Turnstile Integration Guide for frontend setup instructions.
HTTP Request
POST /api/v1/auth/email/verify/resend
| Parameter | Description |
|---|---|
email string | User's email address. |
turnstileToken string | Cloudflare Turnstile verification token. |
Response
204 No Content
Indicates the verification email was sent.
Error Handling
If the email is already verified:
409 Conflict
json
{
"message": "Email has already been verified."
}If another issue occurs:
400 Bad Request
json
{
"message": "Unable to resend verification email."
}