URL

POST https://{api-url}/api/v2/tenants/{orgId}/users/{userId}/changePassword

Sample URLs

https://{api-url}/api/v2/tenants/client_69919/users/USR0000002252/changePassword

Parameters

All fields are mandatory:

FieldData TypeDescription
currentPasswordStringUser current password.
newPasswordStringUser new password. Password must have a minimum of 7 characters with at least:
  • One number (0-9)
  • One special character (#,!, $,*)
  • One lowercase (a-z)
  • One uppercase (A-Z) character
confirmPasswordStringProvide the new password to confirm the update of the password.

Sample request

{
	"currentPassword" : "OpsIT123", 
	"newPassword" : "ChangeMe@1234", 
	"confirmPassword" : "ChangeMe@1234" 
}

Sample response

Null