Resend Verification

Resend the email verification link. Always returns 200 to prevent email enumeration — if the email is unknown or already verified, nothing is sent.

POSThttps://api.marinahealth.eu/auth/verify-email/resend
application/json

Request Body

Body Parameters

NameTypeRequiredDescription
emailstringrequiredEmail address to resend the verification link to.

Example Request

cURL
curl -X POST https://api.marinahealth.eu/auth/verify-email/resend \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com"}'

Response

Successful
FieldTypeDescription
messagestringGeneric confirmation.
json
{
  "message": "If this email is registered and unverified, a new verification link has been sent."
}