POST api/users/SetUserPwd
Request Information
URI Parameters
None.
Body Parameters
SetUserPwdViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Section | integer |
None. |
|
| FOptID | integer |
None. |
|
| Pwd | string |
None. |
|
| OldPwd | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Section": 1,
"FOptID": 2,
"Pwd": "sample string 3",
"OldPwd": "sample string 4"
}
application/xml, text/xml
Sample:
<SetUserPwdViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DY.Entity.ViewModel"> <FOptID>2</FOptID> <OldPwd>sample string 4</OldPwd> <Pwd>sample string 3</Pwd> <Section>1</Section> </SetUserPwdViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MessageModelOfInt32| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Success | boolean |
None. |
|
| Msg | string |
None. |
|
| Response | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 200,
"Success": true,
"Msg": "sample string 3",
"Response": 4
}
application/xml, text/xml
Sample:
<MessageModelOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DY.Entity"> <Msg>sample string 3</Msg> <Response>4</Response> <Status>200</Status> <Success>true</Success> </MessageModelOfint>