POST api/userlab/list
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
UserLabLoginResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| flag | integer |
None. |
|
| message | string |
None. |
|
| data | Collection of UserLab |
None. |
Response Formats
application/json, text/json
Sample:
{
"flag": 1,
"message": "sample string 2",
"data": [
{
"USER_ID": 1,
"DEPT_ID": 2,
"DEPT_NAME": "sample string 3",
"USER_NAME": "sample string 4",
"LOGIN_NAME": "sample string 5",
"PASSWORD": "sample string 6",
"IS_ADMIN": true,
"IS_INACTIVE": true,
"IS_LAB_USER": true,
"IS_VERIFY_REPORT": true,
"IS_HOSPITAL_USER": true,
"HOSPITAL_ID": "sample string 12",
"HOSPITAL_NAME": "sample string 13"
},
{
"USER_ID": 1,
"DEPT_ID": 2,
"DEPT_NAME": "sample string 3",
"USER_NAME": "sample string 4",
"LOGIN_NAME": "sample string 5",
"PASSWORD": "sample string 6",
"IS_ADMIN": true,
"IS_INACTIVE": true,
"IS_LAB_USER": true,
"IS_VERIFY_REPORT": true,
"IS_HOSPITAL_USER": true,
"HOSPITAL_ID": "sample string 12",
"HOSPITAL_NAME": "sample string 13"
}
]
}
application/xml, text/xml
Sample:
<UserLabLoginResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VEZTA.Models">
<data>
<UserLab>
<DEPT_ID>2</DEPT_ID>
<DEPT_NAME>sample string 3</DEPT_NAME>
<HOSPITAL_ID>sample string 12</HOSPITAL_ID>
<HOSPITAL_NAME>sample string 13</HOSPITAL_NAME>
<IS_ADMIN>true</IS_ADMIN>
<IS_HOSPITAL_USER>true</IS_HOSPITAL_USER>
<IS_INACTIVE>true</IS_INACTIVE>
<IS_LAB_USER>true</IS_LAB_USER>
<IS_VERIFY_REPORT>true</IS_VERIFY_REPORT>
<LOGIN_NAME>sample string 5</LOGIN_NAME>
<PASSWORD>sample string 6</PASSWORD>
<USER_ID>1</USER_ID>
<USER_NAME>sample string 4</USER_NAME>
</UserLab>
<UserLab>
<DEPT_ID>2</DEPT_ID>
<DEPT_NAME>sample string 3</DEPT_NAME>
<HOSPITAL_ID>sample string 12</HOSPITAL_ID>
<HOSPITAL_NAME>sample string 13</HOSPITAL_NAME>
<IS_ADMIN>true</IS_ADMIN>
<IS_HOSPITAL_USER>true</IS_HOSPITAL_USER>
<IS_INACTIVE>true</IS_INACTIVE>
<IS_LAB_USER>true</IS_LAB_USER>
<IS_VERIFY_REPORT>true</IS_VERIFY_REPORT>
<LOGIN_NAME>sample string 5</LOGIN_NAME>
<PASSWORD>sample string 6</PASSWORD>
<USER_ID>1</USER_ID>
<USER_NAME>sample string 4</USER_NAME>
</UserLab>
</data>
<flag>1</flag>
<message>sample string 2</message>
</UserLabLoginResponse>