Returns an array of regions for the given organisation
- Sandbox APIhttps://api-sandbox.lawvu.com/account-apis/v1/organisations/{organisationId}/regions
- Production APIhttps://api.lawvu.com/account-apis/v1/organisations/{organisationId}/regions
const organisationId = 'YOUR_organisationId_PARAMETER';
const resp = await fetch(
`https://api-sandbox.lawvu.com/account-apis/v1/organisations/${organisationId}/regions`,
{method: 'GET'}
);
const data = await resp.text();
console.log(data);Response
[
{
"id": 0,
"name": "string"
}
]