Skip to content

Get users

Request

Retrieve a list of users

Query
$filterstring

Filter the results using OData filter syntax

$orderbystring

Order the results using OData orderby syntax

$skipinteger

Skip the specified number of results

$topinteger

Limit the number of results returned

const resp = await fetch(
  `https://api-sandbox.lawvu.com/v2/users`,
  {method: 'GET'}
);

const data = await resp.text();
console.log(data);

Responses

OK

Bodyapplication/json
itemsArray of objects(User)

The collection of items

Response
{ "items": [ {} ] }