Hauptkonto Salden nach Darlehen

Hauptkonto Salden nach Darlehen abrufen

Version 1.0


GET/openwowi/v1.0/AccountancyTransactionData/MasterAccount/LoanBalances
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)
LoanIdinteger (int32)
LoanIdNumnullable string
Request
const response = await fetch('/openwowi/v1.0/AccountancyTransactionData/MasterAccount/LoanBalances', {
    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,
    "LoanId": 1,
    "LoanIdNum": "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