Skip to main content
POST /api/v1/resend-verification Requires BearerAuth. Generates a new email verification token and sends it to the authenticated user’s email address. No request body is needed.
Returns 409 Conflict if the email address is already verified. Check email_verified_at on the user object before calling this endpoint.

Response

sent
boolean
required
Always true on success.

Errors

StatusWhen
401The access token is missing, expired, or invalid
409The email address has already been verified

Example

curl -X POST http://localhost:8080/api/v1/resend-verification \
  -H "Authorization: Bearer <token>"
{
  "sent": true
}

Build docs developers (and LLMs) love