Hauptkonto Salden nach Wirtschaftseinheiten

Hauptkonto Salden nach Wirtschaftseinheiten abrufen

Version 1.0


GET/openwowi/v1.0/AccountancyTransactionData/MasterAccount/EconomicUnitBalances
Authorization
Query parameters
Response

OK

Body
CompanyCodeIdinteger (int32)
MasterAccountIdinteger (int32)
MasterAccountCodenullable string
MasterAccountNamenullable string
FiscalYearinteger (int32)
BookingPeriodinteger (int32)
CarryForwardnullable number (decimal)
AmountDebitnullable number (decimal)
AmountCreditnullable number (decimal)
Balancenullable number (decimal)
EconomicUnitIdinteger (int32)
EconomicUnitIdNumnullable string
Request
const response = await fetch('/openwowi/v1.0/AccountancyTransactionData/MasterAccount/EconomicUnitBalances', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "CompanyCodeId": 1,
    "MasterAccountId": 1,
    "MasterAccountCode": "text",
    "MasterAccountName": "text",
    "FiscalYear": 1,
    "BookingPeriod": 1,
    "CarryForward": 1,
    "AmountDebit": 1,
    "AmountCredit": 1,
    "Balance": 1,
    "EconomicUnitId": 1,
    "EconomicUnitIdNum": "text"
  }
]

Ab Version 1.2 können die Daten über den Parameter "AdditionalAccountType" im Endpunkt "Balances" gefiltert werden. Den Katalog finden Sie in den Stammdaten.

Last updated