Post
/api/v1/users.sendConfirmationEmail
Send an email to verify a user's email address. The user receives the email and they must click the confirmation button to confirm their email address. Rate limit applies: One request can be sent every 60000ms. This endpoint does not require authentication. An unverified user can call it from the login screen to resend their own verification email.
Changelog
| Version | Description |
|---|---|
| 8.6.0 | Authentication is no longer required. |
Body parameters
Example
{
"email": "example@example.com"
}object
email
string Required
Enter the email address that needs to be verified.
Exampleexample@example.com
Responses
200
OK
Success
{
"success": true
}object
success
boolean
400
Bad Request
Missing parameter
{
"success": false,
"error": "must have required property 'email' [invalid-params]",
"errorType": "invalid-params"
}object
success
boolean
error
string
errorType
string