POST api/Account/ChangePassword
Allows a registered user to change their password. This API call requires HTTPS and an appropriate authorization token to be provided in the header.
Request Information
URI Parameters
None.
Body Parameters
JSON object containing the user account and password details
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
{ "OldPassword": "sample string 1", "NewPassword": "sample string 2", "ConfirmPassword": "sample string 3" }
application/xml, text/xml
<ChangePasswordBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PalmSmart.Models"> <ConfirmPassword>sample string 3</ConfirmPassword> <NewPassword>sample string 2</NewPassword> <OldPassword>sample string 1</OldPassword> </ChangePasswordBindingModel>
Response Information
Resource Description
IHttpActionResult
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.