/
Reset User Password API

Reset User Password API

You can reset a user’s password using the API

When resetting users' passwords, you must adhere to the following password strength criteria:

  • Must be at least 8 characters long

  • Must contain at least 1 number

  • Must contain at least 1 special character

  • Must contain at least 1 capital letter


API Documentation

 

Reset password (not merged)

url: /users/reset_password

method: POST

body: {

reset_code: DD3CB5B7C260,

password: new_password

}

 

 

make reset password request - sends reset code to the user’s email address (not merged)

url: /users/request_password_reset_code

method: GET

params: {

email: my_email

}

 

 

check if reset code is correct (not merged)

url: /users/check_password_reset_code

method: GET

params: {

email: my_email,

reset_code: code

}

response: {

is_reset_code_correct: true

}



Related content

Reset your password
Reset your password
More like this
Reset the password of an Organisation-controlled User
Reset the password of an Organisation-controlled User
More like this
Set your password
Set your password
More like this
Control the User Settings of your organisation-controlled users
Control the User Settings of your organisation-controlled users
More like this
Get Users (API
Get Users (API
More like this
Post Users API
Post Users API
More like this