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
| Name | Type | Required | Description |
|---|---|---|---|
| string | required | Email 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
| Field | Type | Description |
|---|---|---|
| message | string | Generic confirmation. |
json
{
"message": "If this email is registered and unverified, a new verification link has been sent."
}