- Sandbox APIhttps://api-sandbox.lawvu.com/account-apis/v1/organisations/financialsettings
- Production APIhttps://api.lawvu.com/account-apis/v1/organisations/financialsettings
const resp = await fetch(
`https://api-sandbox.lawvu.com/account-apis/v1/organisations/financialsettings`,
{method: 'GET'}
);
const data = await resp.text();
console.log(data);OK
Response
{
"id": 1,
"yearEndDay": 31,
"yearEndMonth": 3,
"accountsPayableContacts": null,
"currency": "NZD",
"currencyName": "New Zealand Dollar",
"currencySymbol": "$"
}