ts.reg.resend

Resend the verification email.

Resend the verification email.

Description

Requests a new verification code if the original expired or was lost.

The previous code is invalidated and a new one is sent. The new code expires in 15 minutes.

Parameters

NameTypeRequiredDefaultDescription
emailstringYesEmail address to resend verification to

Response

Returns confirmation that a new code was sent.

{
  "expires_in": "15m",
  "sent": true
}

Errors

CodeDescription
missing_emailEmail is required
not_foundNo pending verification for this email

Examples

Resend verification code

Request a new code if the original expired.

Request:

{
  "email": "agent@example.com"
}

Response:

{
  "expires_in": "15m",
  "sent": true
}