Buchungen nach Darlehen

Buchungen nach Darlehen abrufen

Das MB/ET-Konto wird im Feld AdditionalAccountId und AdditionalAccountValue ausgeben.

Feld
Beschreibung

AdditionalAccountId

Id des Darlehens

AdditionalAccountValue

IdNum des Darlehens

Version 1.0


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

OK

Body
Idinteger (int32)
CompanyCodeIdinteger (int32)
CompanyCodeCodenullable string
CompanyCodeNamenullable string
AdministrationTypeIdnullable integer (int32)
AdministrationTypenullable string
MasterAccountIdinteger (int32)
MasterAccountCodenullable string
MasterAccountNamenullable string
FiscalYearNumberinteger (int32)
BookingPeriodNumberinteger (int32)
BookingPeriodnullable string
BookingTextnullable string
BookingDatestring (date)
Example: "2025-02-05"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
AmountDebitnullable number (decimal)
AmountCreditnullable number (decimal)
AdditionalAccountIdinteger (int32)
AdditionalAccountValuenullable string
BookingTypeIdnullable integer (int32)
BookingTypenullable string
Request
const response = await fetch('/openwowi/v1.0/AccountancyTransactionData/MasterAccount/LoanBookings', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "CompanyCodeId": 1,
    "CompanyCodeCode": "text",
    "CompanyCodeName": "text",
    "AdministrationTypeId": 1,
    "AdministrationType": "text",
    "MasterAccountId": 1,
    "MasterAccountCode": "text",
    "MasterAccountName": "text",
    "FiscalYearNumber": 1,
    "BookingPeriodNumber": 1,
    "BookingPeriod": "text",
    "BookingText": "text",
    "BookingDate": "2025-02-05",
    "AmountDebit": 1,
    "AmountCredit": 1,
    "AdditionalAccountId": 1,
    "AdditionalAccountValue": "text",
    "BookingTypeId": 1,
    "BookingType": "text"
  }
]

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

Last updated