GET api/Account/GetUserListForDriveLog?userId={userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of UserListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Name | string |
None. |
|
| IsExternal | boolean |
None. |
|
| ExternalCompanyId | integer |
None. |
|
| EnableSchedule | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "sample string 1",
"Name": "sample string 2",
"IsExternal": true,
"ExternalCompanyId": 4,
"EnableSchedule": true
},
{
"Id": "sample string 1",
"Name": "sample string 2",
"IsExternal": true,
"ExternalCompanyId": 4,
"EnableSchedule": true
}
]
application/xml, text/xml
Sample:
<ArrayOfUserListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nokon.Nappen.Core.ViewModels">
<UserListModel>
<EnableSchedule>true</EnableSchedule>
<ExternalCompanyId>4</ExternalCompanyId>
<Id>sample string 1</Id>
<IsExternal>true</IsExternal>
<Name>sample string 2</Name>
</UserListModel>
<UserListModel>
<EnableSchedule>true</EnableSchedule>
<ExternalCompanyId>4</ExternalCompanyId>
<Id>sample string 1</Id>
<IsExternal>true</IsExternal>
<Name>sample string 2</Name>
</UserListModel>
</ArrayOfUserListModel>