🔨 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.
POSThttps://api.freddy.aitronos.com/v1/user/resend-email
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).
A Resend email response object containing confirmation of successful email resend.
Bash
- Bash
- Python
- JavaScript
curl https://api.freddy.aitronos.com/v1/user/resend-email \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"is_login": false
}'