Skip to content

Get financial settings

Request

Returns the organisation financial settings the current user is linked to

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

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

Responses

OK

Body
idinteger, (int32)

The organisation ID that the financial settings belong to

yearEndDayinteger, (int32)

The day of the month corresponding to financial year end

yearEndMonthinteger, (int32)

The month corresponding to financial year end

accountsPayableContactsstring or null

Accounts payable contact details

currencystring or null

ISO code of the organisation's default currency e.g. USD

currencyNamestring or nullread-only

The Name of the organisation's default currency e.g. US Dollar

currencySymbolstring or nullread-only

The Symbol of the organisation's default currency e.g. $

Response
{
  "id": 1,
  "yearEndDay": 31,
  "yearEndMonth": 3,
  "accountsPayableContacts": null,
  "currency": "NZD",
  "currencyName": "New Zealand Dollar",
  "currencySymbol": "$"
}