POST account/changepassword
Change the current users password.
Request Information
URI
https://eurotherm-web-api.xaitcpq.net/account/changepassword
URI Parameters
None.
Body Parameters
Change password options.
ChangePasswordBindingModelName | Description | Type | Additional information |
---|---|---|---|
OldPassword | string |
Required Data type: Password |
|
NewPassword | string |
Required Data type: Password String length: inclusive between 6 and 100 |
|
ConfirmPassword | string |
Data type: Password |
Request Formats
application/json, text/json
Sample:
{ "OldPassword": "sample string 1", "NewPassword": "sample string 2", "ConfirmPassword": "sample string 3" }
text/html
Sample:
{"OldPassword":"sample string 1","NewPassword":"sample string 2","ConfirmPassword":"sample string 3"}
application/xml, text/xml
Sample:
<ChangePasswordBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.AccountBindingModels"> <ConfirmPassword>sample string 3</ConfirmPassword> <NewPassword>sample string 2</NewPassword> <OldPassword>sample string 1</OldPassword> </ChangePasswordBindingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OK if successful, otherwise the error result.
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.