Skip to content

Get matter types

Request

Retrieve a list of matter types

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/matterTypes`,
  {method: 'GET'}
);

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

Responses

OK

Bodyapplication/json
itemsArray of objects(MatterType)

The collection of items

Response
{ "items": [ {} ] }