Skip to content

Get fields

Request

Retrieve a list of available fields

Query
$skipinteger, (int32)

Specifies the number of items to skip

Default:0
$topinteger, (int32)

Specifies the maximum number of items to return

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

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

Responses

OK

Bodyapplication/json
itemsArray of objects(Field)

The collection of items

Response
{ "items": [ {} ] }