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>

Last updated