GetNewInactivePassword

NOTE: This API is still functional but obsolete. As of April 2014, active passwords do not expire, so inactive passwords are no longer needed.

Returns a new, randomly generated inactive password for the current username.

Related Topics

Request Parameters

Parameter Type Description
CurrentPassword
required
string The current active password for your account.

Response Parameters

Parameter Type Description
NewPassword string The new inactive password for the account.

Example SOAP Request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:v2="http://nphase.com/unifiedwebservice/v2"
  xmlns:nph="http://schemas.datacontract.org/2004/07/NPhase.UnifiedWebService.APIs.v2.Contract.AccountService">
     <soapenv:Header>
       <v2:token>''current_session_token''</v2:token>
     </soapenv:Header>
     <soapenv:Body>
        <v2:GetNewInactivePassword>
           <v2:Input>
              <nph:CurrentPassword>your_current_password</nph:CurrentPassword>
           </v2:Input>
        </v2:GetNewInactivePassword>
     </soapenv:Body>
 </soapenv:Envelope>

Example SOAP Response

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body>
    <GetNewInactivePasswordResponse xmlns="http://nphase.com/unifiedwebservice/v2">
      <Output 
       xmlns:a="http://schemas.datacontract.org/2004/07/NPhase.UnifiedWebService.APIs.v2.Contract.AccountService" 
       xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
         <a:NewPassword>thenewrandompassword</a:NewPassword>
      </Output>
    </GetNewInactivePasswordResponse>
  </s:Body>
</s:Envelope>

Request Schema Diagram

Response Schema Diagram