auth

Resend email verification

Send a new verification link when the previous one has expired. The response never discloses whether the account exists.

post/api/auth/resend-verification-email

Request body

emailstring required

User email address

Example request

{
  "email": "user@example.com"
}

Response

Successful Response

titlestring

Response title

messagestring

Generic verification-email response

Example response

{
  "message": "Se l'indirizzo è registrato e non ancora verificato, riceverai una nuova email.",
  "title": "Email inviata"
}

Changes