Skip to main content
POST
/
api
/
auth
/
changePassword
Change user password
curl --request POST \
  --url https://pria.praxislxp.com/api/auth/changePassword \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "john.doe@domain.com",
  "resetCode": "ABC123",
  "password": "newSecurePassword456"
}
'
{
  "success": true,
  "message": "Password changed successfully"
}

Body

application/json
email
string<email>
required

User email address

Example:

"john.doe@domain.com"

resetCode
string
required

Valid reset code

Example:

"ABC123"

password
string<password>
required

New password (minimum 6 characters)

Minimum string length: 6
Example:

"newSecurePassword456"

Response

Password changed successfully

success
boolean
Example:

true

message
string
Example:

"Password changed successfully"