Skip to main content
POST
/
users
/
email
/
send-verification
Send email verification code
curl --request POST \
  --url https://auth.platform.arb.inc/users/email/send-verification \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "codeLength": 6,
  "validForSeconds": 600,
  "retryInSeconds": 60
}

Body

application/json
email
string<email>
required

The email address to send the verification code to.

Response

Verification code successfully sent.

codeLength
integer

Length of the verification code sent.

Example:

6

validForSeconds
integer

Duration in seconds the code is valid for.

Example:

600

retryInSeconds
integer

Minimum wait time before another request can be made.

Example:

60