# Resend Email Verification div strong 🔨 In Development — This section is still being developed and may change. **POST** `/v1/user/resend-email` - Resend email verification to a user who hasn't received or has lost their original verification code. This endpoint generates a new verification code and sends it to the specified email address. #### Request Body **`email`** string required Email address to resend verification to. **`is_login`** boolean optional · Defaults to `false` Whether this is for login (true) or registration (false). ## Returns A [Resend email response object](#resend-email-response-object) containing confirmation of successful email resend. For Registration ```bash curl https://api.freddy.aitronos.com/v1/user/resend-email \ -H "Content-Type: application/json" \ -d '{ "email": "user@example.com", "is_login": false }' ``` ```python import requests response = requests.post( "https://api.freddy.aitronos.com/v1/user/resend-email", headers={ "Content-Type": "application/json" }, json={ "email": "user@example.com", "is_login": False } ) result = response.json() print(f"Resend result: {result['message']}") ``` ```javascript const response = await fetch('https://api.freddy.aitronos.com/v1/user/resend-email', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ email: 'user@example.com', is_login: false }) }); const result = await response.json(); console.log(`Resend result: ${result.message}`); ``` For Login ```bash curl https://api.freddy.aitronos.com/v1/user/resend-email \ -H "Content-Type: application/json" \ -d '{ "email": "user@example.com", "is_login": true }' ```