GET v1/User?Skip={Skip}&Take={Take}&SearchString={SearchString}&SortDirection={SortDirection}&SortName={SortName}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Skip

integer

None.

Take

integer

None.

SearchString

string

None.

SortDirection

SortDirection

None.

SortName

ListSortName

None.

Body Parameters

None.

Response Information

Resource Description

UserListViewModel
NameDescriptionTypeAdditional information
Items

Collection of UserListItemViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Id": "180a3b9f-e48f-426b-84c0-3277e4f229c6",
      "FullName": "sample string 2",
      "PersonType": 0
    },
    {
      "Id": "180a3b9f-e48f-426b-84c0-3277e4f229c6",
      "FullName": "sample string 2",
      "PersonType": 0
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"Id":"180a3b9f-e48f-426b-84c0-3277e4f229c6","FullName":"sample string 2","PersonType":0},{"Id":"180a3b9f-e48f-426b-84c0-3277e4f229c6","FullName":"sample string 2","PersonType":0}]}

application/xml, text/xml

Sample:
<UserListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List">
  <Items>
    <UserListItemViewModel>
      <FullName>sample string 2</FullName>
      <Id>180a3b9f-e48f-426b-84c0-3277e4f229c6</Id>
      <PersonType>Unassigned</PersonType>
    </UserListItemViewModel>
    <UserListItemViewModel>
      <FullName>sample string 2</FullName>
      <Id>180a3b9f-e48f-426b-84c0-3277e4f229c6</Id>
      <PersonType>Unassigned</PersonType>
    </UserListItemViewModel>
  </Items>
</UserListViewModel>