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

Body

application/json
email
string<email>
required

The email address associated with the user account.

Response

Verification code sent successfully.

codeLength
integer

The length of the verification code.

Example:

6

validForSeconds
integer

Number of seconds the verification code is valid for.

Example:

600

retryInSeconds
integer

Number of seconds before another code can be requested.

Example:

300