POST api/v1/LoadUserMenu
Request Information
URI Parameters
None.
Body Parameters
LoginInput| Name | Description | Type | Additional information |
|---|---|---|---|
| LoginID | string |
None. |
|
| Password | string |
None. |
|
| CompID | integer |
None. |
|
| DeviceID | integer |
None. |
|
| UserID | integer |
None. |
|
| OldPassword | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"LoginID": "sample string 1",
"Password": "sample string 2",
"CompID": 3,
"DeviceID": 4,
"UserID": 5,
"OldPassword": "sample string 6"
}
application/xml, text/xml
Sample:
<LoginInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CompID>3</CompID> <DeviceID>4</DeviceID> <LoginID>sample string 1</LoginID> <OldPassword>sample string 6</OldPassword> <Password>sample string 2</Password> <UserID>5</UserID> </LoginInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |