POST icss/api/v1/account/changepwd
Request Information
URI Parameters
None.
Body Parameters
ChangePasswordModelName | Description | Type | Additional information |
---|---|---|---|
UserId | integer |
None. |
|
OldPassword | string |
None. |
|
NewPassword | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserId": 1, "OldPassword": "sample string 2", "NewPassword": "sample string 3" }
application/xml, text/xml
Sample:
<ChangePasswordModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ICSSQuickService.WebApi.Models"> <NewPassword>sample string 3</NewPassword> <OldPassword>sample string 2</OldPassword> <UserId>1</UserId> </ChangePasswordModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultOutputModelsName | Description | Type | Additional information |
---|---|---|---|
Result | boolean |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Result": true, "Message": "sample string 2" }
application/xml, text/xml
Sample:
<ResultOutputModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ICSSQuickService.WebApi.Models"> <Message>sample string 2</Message> <Result>true</Result> </ResultOutputModels>