POST api/member/changepassword
To change password with current password
Request Information
URI Parameters
None.
Body Parameters
MlChangePassword| Name | description | Type | Additional information |
|---|---|---|---|
| EmailID | string |
None. |
|
| CurrentPassword | string |
None. |
|
| NewPassword | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CurrentPassword": "sample string 2",
"EmailID": "sample string 1",
"NewPassword": "sample string 3"
}
application/xml, text/xml
Sample:
<MlChangePassword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Systemic.MLM.Model.Member"> <CurrentPassword>sample string 2</CurrentPassword> <EmailID>sample string 1</EmailID> <NewPassword>sample string 3</NewPassword> </MlChangePassword>
response Information
Resource description
ApiResponse| Name | description | Type | Additional information |
|---|---|---|---|
| response | string |
Required |
|
| failure | MlError |
None. |
|
| success | MlSuccess |
None. |