Open Gauge
Auth

Resend Verification Endpoint

Re-send the verification email. Always responds 204 regardless of whether the address exists or is already verified, to avoid leaking account existence.

POST
/api/v1/auth/resend-verification

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v1/auth/resend-verification" \  -H "Content-Type: application/json" \  -d '{    "email": "string"  }'
Empty
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}