PUT api/v1/users/changepassword
Change the registered users logon password.
Request Information
URI Parameters
None.
Body Parameters
The change password.
ChangePassword| Name | Description | Type | Additional information |
|---|---|---|---|
| Logon |
The logon. |
string |
Required String length: inclusive between 0 and 255 |
| OldPassword |
The old password. |
string |
Required String length: inclusive between 0 and 255 |
| NewPassword |
The new password. |
string |
Required String length: inclusive between 0 and 255 |
Request Formats
application/json, text/json
Sample:
{
"Logon": "sample string 1",
"OldPassword": "sample string 2",
"NewPassword": "sample string 3"
}
application/xml, text/xml
Sample:
<ChangePassword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models"> <Logon>sample string 1</Logon> <NewPassword>sample string 3</NewPassword> <OldPassword>sample string 2</OldPassword> </ChangePassword>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Returns response message.
None.