Buchungen
Mit diesem Aufruf lassen sich die Buchungen innerhalb von WOWIPORT abrufen.
Die Endpunkte der Version 1.2 sind momentan in der Entwicklung und können noch Änderungen erfahren.
Abruf der Buchungen
Version 1.0
get
Authorizations
Query parameters
apiKeystringOptional
fiscalYearNumberinteger · int32Optional
bookingPeriodNumberFrominteger · int32Optional
bookingPeriodNumberTointeger · int32Optional
Responses
200
OK
400
Bad Request
401
Unauthorized
get
GET /openwowi/v1.0/AccountancyTransactionData/Bookings HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"Id": 1,
"BookingNumber": "text",
"MasterAccountId": 1,
"MasterAccountCode": "text",
"ContraMasterAccountId": 1,
"ContraMasterAccountCode": "text",
"AdditionalAccount1Id": 1,
"AdditionalAccount1Value": "text",
"AdditionalAccount2Id": 1,
"AdditionalAccount2Value": "text",
"AdditionalAccount3Id": 1,
"AdditionalAccount3Value": "text",
"AdditionalAccount4Id": 1,
"AdditionalAccount4Value": "text",
"AdditionalAccount5Id": 1,
"AdditionalAccount5Value": "text",
"AdditionalAccount6Id": 1,
"AdditionalAccount6Value": "text",
"DebitCredit": "text",
"BookingDate": "2025-06-27",
"DueDate": "2025-06-27",
"AmountDebit": 1,
"AmountCredit": 1,
"TaxRateId": 1,
"TaxRate": "text",
"BookingTypeId": 1,
"BookingType": "text"
}
]
Version 1.2
get
Authorizations
Query parameters
apiKeystringOptional
limitinteger · int32OptionalExample:
20
fiscalYearNumberinteger · int32Optional
offsetinteger · int32Optional
bookingIdinteger · int32Optional
companyCodeIdinteger · int32Optional
masterAccountIdinteger · int32Optional
masterAccountNumberstringOptional
bookingPeriodIdinteger · int32Optional
bookingPeriodNumberFrominteger · int32Optional
bookingPeriodNumberTointeger · int32Optional
bookingTypeIdinteger · int32Optional
bookingTypeClassificationIdinteger · int32Optional
bookingDateFromstring · date-timeOptional
bookingDateTostring · date-timeOptional
additionalAccountTypeanyOptional
additionalAccountValuestringOptional
includeAdditionalAccountItemsAsListbooleanOptional
includeAdditionalAccountItemsAsPropertiesbooleanOptional
includeAccountancyRelationsbooleanOptional
showNullValuesbooleanOptionalDefault:
false
Responses
200
OK
400
Bad Request
401
Unauthorized
get
GET /openwowi/v1.2/AccountancyTransactionData/MasterAccountBookings HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"Id": 1,
"BookingNumber": "text",
"DebitCredit": "text",
"BookingDate": "2025-06-27",
"DueDate": "2025-06-27",
"AmountDebit": 1,
"AmountCredit": 1,
"OptionTaxPercentage": 1,
"OptionTaxSource": "text",
"OriginalOptionAmount": 1,
"OriginalGrossAmount": 1,
"IsHidden": true,
"IsGeneralReversal": true,
"IsGeneralReversalOf": true,
"MasterAccount": {
"Id": 1,
"Code": "text"
},
"ContraMasterAccount": {
"Id": 1,
"Code": "text"
},
"BookingType": {
"Id": 1,
"Code": "text",
"Classification": {
"Id": 1,
"Code": "text"
}
},
"SalesTax": {
"Id": 1,
"Code": "text"
},
"AdditionalAccount1": {
"Id": 1,
"Value": "text",
"Type": {
"Id": 1,
"Code": "text"
}
},
"AdditionalAccount2": {
"Id": 1,
"Value": "text",
"Type": {
"Id": 1,
"Code": "text"
}
},
"AdditionalAccount3": {
"Id": 1,
"Value": "text",
"Type": {
"Id": 1,
"Code": "text"
}
},
"AdditionalAccount4": {
"Id": 1,
"Value": "text",
"Type": {
"Id": 1,
"Code": "text"
}
},
"AdditionalAccount5": {
"Id": 1,
"Value": "text",
"Type": {
"Id": 1,
"Code": "text"
}
},
"AdditionalAccount6": {
"Id": 1,
"Value": "text",
"Type": {
"Id": 1,
"Code": "text"
}
},
"AdditionalAccount": [
{
"Id": 1,
"Value": "text",
"Type": {
"Id": 1,
"Code": "text"
}
}
],
"FilteredAdditionalAccount": {
"Id": 1,
"Value": "text",
"Type": {
"Id": 1,
"Code": "text"
}
},
"Voucher": {
"Id": 1,
"VoucherNumber": "text",
"OwnReference": "text",
"PartnerReference": "text"
},
"VoucherProcess": {
"Id": 1,
"BookingNumber": "text"
},
"InvoiceReceipt": {
"Id": 1,
"InvoiceReceiptNumber": "text"
}
}
]
Neben der allgemeinen Abfrage der Buchungen lassen sich diese nach den folgenden Kontierungen zurückgeben:
Buchungen nach WirtschaftseinheitenBuchungen nach VertragskontenBuchungen nach DarlehenLast updated