Skip to main content
POST
/
users
/
password
/
reset
Reset user password
curl --request POST \
  --url https://auth.platform.arb.inc/users/password/reset \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "verificationCode": 123456,
  "password": "MyStrongPassw0rd!"
}
'
"Successfully reset the password"

Body

application/json
email
string<email>
required

The user's email address.

verificationCode
string
required

Verification code sent to the user's email.

Example:

123456

password
string
required

New password to set for the user.

Example:

"MyStrongPassw0rd!"

Response

Password successfully reset.

The response is of type string.

Example:

"Successfully reset the password"