GET v1/User?Skip={Skip}&Take={Take}&SearchString={SearchString}&SortDirection={SortDirection}&SortName={SortName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Skip | integer |
None. |
|
| Take | integer |
None. |
|
| SearchString | string |
None. |
|
| SortDirection | SortDirection |
None. |
|
| SortName | ListSortName |
None. |
Body Parameters
None.
Response Information
Resource Description
UserListViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of UserListItemViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"Id": "6ed11233-8528-4260-81a8-b3845ea10edb",
"FullName": "sample string 2",
"PersonType": 0
},
{
"Id": "6ed11233-8528-4260-81a8-b3845ea10edb",
"FullName": "sample string 2",
"PersonType": 0
}
]
}
application/octet-stream
Sample:
{"Items":[{"Id":"6ed11233-8528-4260-81a8-b3845ea10edb","FullName":"sample string 2","PersonType":0},{"Id":"6ed11233-8528-4260-81a8-b3845ea10edb","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>6ed11233-8528-4260-81a8-b3845ea10edb</Id>
<PersonType>Unassigned</PersonType>
</UserListItemViewModel>
<UserListItemViewModel>
<FullName>sample string 2</FullName>
<Id>6ed11233-8528-4260-81a8-b3845ea10edb</Id>
<PersonType>Unassigned</PersonType>
</UserListItemViewModel>
</Items>
</UserListViewModel>