Resend Verification
POST
/auth/resend-verification/
const url = 'https://example.com/auth/resend-verification/';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"email":"hello@example.com"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/auth/resend-verification/ \ --header 'Content-Type: application/json' \ --data '{ "email": "hello@example.com" }'Re-issue and re-send a verification email.
SIGNUP-05 / T-1231-05 (enumeration-safe): ALWAYS returns the same 200 body regardless of whether the email exists, is unknown, or is already verified. Send errors are logged server-side only and never branch the HTTP response.
Request Body required
Section titled “Request Body required ” Media type application/json
ResendVerificationRequest
object
email
required
Email
Email address to resend the verification link to
string format: email
Example generated
{ "email": "hello@example.com"}Responses
Section titled “ Responses ”Successful Response
Media type application/json
Bad request — invalid query parameters or payload
Media type application/problem+json
Unauthorized — missing or invalid credentials
Media type application/problem+json
Forbidden — caller lacks access to this resource
Media type application/problem+json
Not found
Media type application/problem+json
Validation error
Media type application/problem+json
Too many requests — retry after the advertised interval
Media type application/problem+json
Headers
Section titled “Headers ” Retry-After
integer
Seconds until the request may be retried
Internal server error
Media type application/problem+json
Service unavailable — the database could not serve the request
Media type application/problem+json