Reference / Auth

Re-send the email-verification code for an unverified user. Always returns 200 (no enumeration).

POST /v1/auth/verify-email/resend
End-user session operationId: resend_verification

Authorization

Called from the browser with the publishable application id (x-application-id); the access token lives in memory.

Request body · required

  • email string required

Responses

200 Verification re-sent if applicable

Request

curl -X POST "http://localhost:8080/v1/auth/verify-email/resend" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "string"
}'

Try it

live request
POST http://localhost:8080/v1/auth/verify-email/resend

Request body

application/json