GET api/Account/GetUserList?userId={userId}&accountTypeId={accountTypeId}&isActive={isActive}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

string

Required

accountTypeId

integer

Required

isActive

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of UserListModel
NameDescriptionTypeAdditional 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>