POST api/Login/ChangePassword
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| changepassmodel | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"Header": {
"AuthCode": "sample string 1",
"terminalid": "sample string 2",
"uniqueidentification": "sample string 3",
"requesttype": "sample string 4"
},
"Change_Password": {
"OldPassword": "sample string 1",
"Newpassword": "sample string 2",
"RetypeNewPassword": "sample string 3"
}
}
application/xml, text/xml
Sample:
<passchange xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CommonHelpers.Authentication">
<Change_Password>
<Newpassword>sample string 2</Newpassword>
<OldPassword>sample string 1</OldPassword>
<RetypeNewPassword>sample string 3</RetypeNewPassword>
</Change_Password>
<Header xmlns:d2p1="http://schemas.datacontract.org/2004/07/CommonHelpers.AuthenticationModels">
<d2p1:AuthCode>sample string 1</d2p1:AuthCode>
<d2p1:requesttype>sample string 4</d2p1:requesttype>
<d2p1:terminalid>sample string 2</d2p1:terminalid>
<d2p1:uniqueidentification>sample string 3</d2p1:uniqueidentification>
</Header>
</passchange>
application/x-www-form-urlencoded
Sample:
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"AuthCode": "sample string 1",
"TxnIdentity": "sample string 2",
"ResponseMessage": "sample string 3",
"Retailername": "sample string 4",
"terminalid": "sample string 5",
"itexterminalid": "sample string 6",
"balance": "sample string 7",
"profileimage": "sample string 8",
"Respcode": 9,
"UserType": 10
}
application/xml, text/xml
Sample:
<AuthenticationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CommonHelpers.Authentication"> <AuthCode>sample string 1</AuthCode> <Respcode>9</Respcode> <ResponseMessage>sample string 3</ResponseMessage> <Retailername>sample string 4</Retailername> <TxnIdentity>sample string 2</TxnIdentity> <UserType>10</UserType> <balance>sample string 7</balance> <itexterminalid>sample string 6</itexterminalid> <profileimage>sample string 8</profileimage> <terminalid>sample string 5</terminalid> </AuthenticationResponse>