Skip to content

Get organisations

Request

Returns an array of organisations the current user is linked to

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

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

Responses

OK

Body
Array [
idinteger, (int32)
namestring or null
]
Response
[
  {
    "id": 0,
    "name": "string"
  }
]