Change Password
Change Password
The Change Password API enables a user to change his personal password. There is no need to transfer the user parameter. The application has the session context to identify it.
Input Parameters:
Name
Required
Definition
Comments
NewPassword
Y
Format: 8 -10 chars. Alphanumeric, Including char: _ ! @ # $ % ^ * + ~ ? Required to have at least - One Upper (e.g. A, B...) - One Lower (e.g. a, b...) - One number (e.g. 1, 2…) - One special character (e.g. _ ! @...) Description: New password value provided by the user.
OldPassword
Y
Format: Alphanumeric, 6-10 Description: Current password verification.
Output Parameters:
XML Samples
Input XML
<?xml version="1.0" ?>
<PraxellXMLRequest>
<AuthenticationDetails>
<UserName>Aaronb_CSQ_QA</UserName>
<UserPassword>1q2w3e7u</UserPassword>
</AuthenticationDetails>
<ClientSourceIP></ClientSourceIP>
<ServiceDetails>
<ServiceName>ChangePassword</ServiceName>
<UniqueRequestId>132636356538</UniqueRequestId>
</ServiceDetails>
<Origin>
<OriginType>ExtAPI</OriginType>
</Origin>
<ServiceParams>
<NewPassword>123456</NewPassword>
<OldPassword>567890</OldPassword>
</ServiceParams>
</PraxellXMLRequest>
<?xml version="1.0"?>
<PraxellXMLResponse>
<ResponseDetails>
<ServiceName>ChangePassword</ServiceName>
<SessionId>73491609200742114</SessionId>
<StatusCode>0</StatusCode>
<StatusName>StatusOK</StatusName>
<StatusDescription>NA</StatusDescription>
<ServiceDate>2007-11-25 09:42:48</ServiceDate>
<ServiceId>73491609200742114</ServiceId>
</ResponseDetails>
<ResponseParams>
</ResponseParams>
</PraxellXMLResponse>
<?xml version="1.0"?>
<PraxellXMLResponse>
<ResponseDetails>
<ServiceName>ChangePassword</ServiceName>
<SessionId>07071612200737105</SessionId>
<StatusCode>70004</StatusCode>
<StatusName>InvalidPassword</StatusName>
<StatusDescription>InvalidPassword</StatusDescription>
<ServiceDate>2021-10-01 12:37:50</ServiceDate>
<ServiceId>07071612200737105</ServiceId>
</ResponseDetails>
<ResponseParams>
</ResponseParams>
</PraxellXMLResponse>
Last updated