- Sandbox APIhttps://api-sandbox.lawvu.com/account-apis/v1/organisations
- Production APIhttps://api.lawvu.com/account-apis/v1/organisations
const resp = await fetch(
`https://api-sandbox.lawvu.com/account-apis/v1/organisations`,
{method: 'GET'}
);
const data = await resp.text();
console.log(data);Response
[
{
"id": 0,
"name": "string"
}
]