Change Password

Note: Alternatively, you can use the Change Password Form to change your password.

METHOD: POST

ENDPOINT: https://api.playground.protegrity.com/auth/change-password

DESCRIPTION:

Change your password. This is a recommended action for all newly registered accounts.

Password requirements: Your new password should be at least 8 characters long, include a special character, a lowercase letter, an uppercase letter, and a number.

ATTRIBUTES:

email (required) The email address you used to register with the Playground.

old_password (required) Your old password. For new accounts, this is the password you received from us during registration.

new_password (required) Your new password.

SAMPLE REQUEST

curl --location 'https://api.playground.protegrity.com/auth/change-password' \
--header 'Content-Type: application/json' \
--data-raw '{
  "email": "<USER_EMAIL>",
  "old_password": "<OLD_PASSWORD>",
  "new_password": "<NEW_PASSWORD>"
}'
  
  
  

SAMPLE RESPONSE


{
  "statusCode": 201,
  "message": "Password change successful"
}


Last modified April 15, 2025