Skip to main content
POST
/
auth
/
resend-verification
{
  "success": false,
  "error": {
    "status": 400,
    "code": "VALIDATION_INVALID",
    "message": "Invalid turnstile token"
  },
  "data": null
}
Resend verification email to the user’s email address.
turnstileToken
string
required
Turnstile captcha token for bot protection
success
boolean
Indicates if the request was successful
data
object
Resend result data

Example Request

curl -X POST https://api.transaction.gg/auth/resend-verification \
  -H "Content-Type: application/json" \
  -d '{
    "turnstileToken": "captcha_token"
  }'

Example Response

{
  "success": true,
  "error": null,
  "data": {
    "sent": true
  }
}

Error Responses

{
  "success": false,
  "error": {
    "status": 400,
    "code": "VALIDATION_INVALID",
    "message": "Invalid turnstile token"
  },
  "data": null
}