POST api/Account/ChangePassword?companyID={companyID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyID | integer |
Default value is 11 |
Body Parameters
ChangePasswordBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OldPassword | string |
Data type: Text |
|
| NewPassword | string |
Data type: Text Matching regular expression pattern: ^([a-zA-Z0-9]+)$ String length: inclusive between 12 and 24 |
|
| ConfirmPassword | string |
Data type: Text Matching regular expression pattern: ^([a-zA-Z0-9]+)$ |
|
| CompanyID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"OldPassword": "sample string 1",
"NewPassword": "sample string 2",
"ConfirmPassword": "sample string 3",
"CompanyID": 4
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.