# Resend Email Verification Resend email verification link to user's email address. Used when initial verification email was not received or expired. Endpoint: POST /resend-email-verification Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `email` (string, required) Email address to resend verification to. Example: "example@ivalt.com" - `country_code` (string, required) Country code in E.164 format. Example: "+91" - `mobile` (string, required) Mobile number without country code. Example: "62839xxxxx" ## Response 200 fields (application/json): - `status` (string, required) Indicates request success. Always success in this schema. Example: "success" - `message` (string, required) Short description of the successful operation outcome.. Example: "Operation completed successfully" ## Response 400 fields (application/json): - `status` (string, required) Indicates failure. Always error in this schema. Example: "error" - `message` (string, required) Detailed explanation of the error to help clients fix the request. Example: "Invalid request parameters"