GET api/users/users

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of UserListDto
NameDescriptionTypeAdditional information
UserID

string

None.

ProfileID

integer

None.

Name

string

None.

Active

boolean

None.

Profile

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UserID": "sample string 1",
    "ProfileID": 2,
    "Name": "sample string 3",
    "Active": true,
    "Profile": "sample string 5"
  },
  {
    "UserID": "sample string 1",
    "ProfileID": 2,
    "Name": "sample string 3",
    "Active": true,
    "Profile": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUserListDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PortalWanza.Services.Core.Models">
  <UserListDto>
    <Active>true</Active>
    <Name>sample string 3</Name>
    <Profile>sample string 5</Profile>
    <ProfileID>2</ProfileID>
    <UserID>sample string 1</UserID>
  </UserListDto>
  <UserListDto>
    <Active>true</Active>
    <Name>sample string 3</Name>
    <Profile>sample string 5</Profile>
    <ProfileID>2</ProfileID>
    <UserID>sample string 1</UserID>
  </UserListDto>
</ArrayOfUserListDto>