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": "user@example.com"
}
'
{
  "codeLength": 8,
  "validForSeconds": 600,
  "retryInSeconds": 60
}

Body

application/json
email
string<email>
required

User's email address

Example:

"user@example.com"

Response

Verification code sent successfully

codeLength
integer

Length of the verification code

Example:

8

validForSeconds
integer

Number of seconds the code is valid

Example:

600

retryInSeconds
integer

Number of seconds before a new code can be requested

Example:

60