Get /api/v3/admin/accounting

Operation: GetAccountingSettingsV3

Summary

Get accounting settings

Response Parameters

HTTP 200


Body Parameters

Content Type: application/json

Type Reference: AccountingSettingsResponse

Parameter Description Type
fiscalYearStartMonth First month of fiscal year
Value will be from 1-12
integer
fiscalYearDefinedAtYear Fiscal year reflects the calendar year in which it Begins or Ends
Value will be one of “beginning”, “ending”
string
calendarizationMethod Calendarization method
Value will be one of “monthly”, “user-defined”
string
accountPeriods List of accounting period names AccountPeriodResponse [Array]
   accountPeriodId The account period identifier integer
   periodNumber The period number integer
   name The name of the period string

Responses

HTTP 200

Body

Content Type: application/json
{
  "fiscalYearStartMonth": 1,
  "fiscalYearDefinedAtYear": "string",
  "calendarizationMethod": "string",
  "accountPeriods": [
    {
      "accountPeriodId": 1,
      "periodNumber": 1,
      "name": "string"
    }
  ]
}