GET api/Account/GetUsers?from={from}&to={to}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
from

integer

Default value is 0

to

integer

Default value is 100

Body Parameters

None.

Response Information

Resource Description

Collection of SingleUser
NameDescriptionTypeAdditional information
fullname

string

None.

username

string

None.

rol

Object

None.

status

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "fullname": "sample string 1",
    "username": "sample string 2",
    "rol": {},
    "status": true
  },
  {
    "fullname": "sample string 1",
    "username": "sample string 2",
    "rol": {},
    "status": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfSingleUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Pepezone.Models">
  <SingleUser>
    <fullname>sample string 1</fullname>
    <rol />
    <status>true</status>
    <username>sample string 2</username>
  </SingleUser>
  <SingleUser>
    <fullname>sample string 1</fullname>
    <rol />
    <status>true</status>
    <username>sample string 2</username>
  </SingleUser>
</ArrayOfSingleUser>