Buchungsbelege

Die Endpunkte dieser Endpunktberechtigung finden Sie im Controller "AccountancyVoucherProcess".

Hinweise zur Funktion

Bitte beachten Sie, dass der Abruf der Buchungsbelege aus Gründen des Datenschutzes an den API-Key gekoppelt ist, der den Buchungsbeleg erstellt hat.

Buchungsbelege abfragen

Version 1.2


get
Authorizations
Path parameters
idinteger · int32Required
Query parameters
apiKeystringOptional
showNullValuesbooleanOptionalDefault: false
Responses
200
OK
get
GET /openwowi/v1.2/AccountancyVoucherProcess/{id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "Id": 1,
  "NodeId": 1,
  "VoucherDate": "2025-06-27",
  "VoucherNumber": "text",
  "VoucherType": {
    "Id": 1,
    "Code": "text"
  },
  "PartnerReference": "text",
  "OwnReference": "text",
  "Description": "text",
  "VoucherProcess": {
    "Id": 1,
    "CompanyCode": {
      "Id": 1,
      "Name": "text",
      "Code": "text"
    },
    "VoucherProcessType": {
      "Id": 1,
      "Code": "text"
    },
    "BookingRuleType": {
      "Id": 1,
      "Code": "text"
    },
    "Description": "text",
    "FiscalYearNumber": 1,
    "BookingPeriodNumber": 1,
    "BookingDate": "2025-06-27",
    "ReleaseDate": "2025-06-27",
    "BookingNumber": "text",
    "Bookings": [
      {
        "Id": 1,
        "MasterAccount": {
          "Id": 1,
          "Code": "text"
        },
        "SalesTax": {
          "Id": 1,
          "Code": "text"
        },
        "DebitCredit": "Debit",
        "Amount": 1,
        "Maturity": "2025-06-27",
        "OptionTaxPercentage": 1,
        "OriginalGrossAmount": 1,
        "OriginalOptionAmount": 1,
        "OptionTaxSource": "text",
        "AdditionalAccount": [
          {
            "Id": 1,
            "Value": "text",
            "Type": {
              "Id": 1,
              "Code": "text"
            }
          }
        ]
      }
    ]
  }
}

Buchungsbelege anlegen

Version 1.2


post
Authorizations
Query parameters
apiKeystringOptional
testModebooleanOptional
showNullValuesbooleanOptionalDefault: false
Body
AddToExistingVoucherIdinteger · int32 | nullableOptional
CompanyCodeIdinteger · int32Optional
BookingDatestring · dateOptionalExample: 2025-06-27Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
VoucherProcessTypeIdinteger · int32Optional
BookingRuleTypeIdinteger · int32Optional
Descriptionstring | nullableOptional
Responses
201
Created
post
POST /openwowi/v1.2/AccountancyVoucherProcess/Create HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 452

{
  "AddToExistingVoucherId": 1,
  "NewVoucherImportRequest": {
    "VoucherDate": "2025-06-27",
    "PartnerReference": "text",
    "OwnReference": "text",
    "Description": "text"
  },
  "CompanyCodeId": 1,
  "BookingDate": "2025-06-27",
  "VoucherProcessTypeId": 1,
  "BookingRuleTypeId": 1,
  "Description": "text",
  "Bookings": [
    {
      "MasterAccountId": 1,
      "BookingText": "text",
      "SalesTaxId": 1,
      "DebitCredit": "Debit",
      "Amount": 1,
      "Maturity": "2025-06-27",
      "AdditionalAccount": [
        {
          "AdditionalAccountTypeId": 1,
          "Id": 1
        }
      ]
    }
  ]
}
{
  "Id": 1,
  "NodeId": 1,
  "VoucherDate": "2025-06-27",
  "VoucherNumber": "text",
  "VoucherType": {
    "Id": 1,
    "Code": "text"
  },
  "PartnerReference": "text",
  "OwnReference": "text",
  "Description": "text",
  "VoucherProcess": {
    "Id": 1,
    "CompanyCode": {
      "Id": 1,
      "Name": "text",
      "Code": "text"
    },
    "VoucherProcessType": {
      "Id": 1,
      "Code": "text"
    },
    "BookingRuleType": {
      "Id": 1,
      "Code": "text"
    },
    "Description": "text",
    "FiscalYearNumber": 1,
    "BookingPeriodNumber": 1,
    "BookingDate": "2025-06-27",
    "ReleaseDate": "2025-06-27",
    "BookingNumber": "text",
    "Bookings": [
      {
        "Id": 1,
        "MasterAccount": {
          "Id": 1,
          "Code": "text"
        },
        "SalesTax": {
          "Id": 1,
          "Code": "text"
        },
        "DebitCredit": "Debit",
        "Amount": 1,
        "Maturity": "2025-06-27",
        "OptionTaxPercentage": 1,
        "OriginalGrossAmount": 1,
        "OriginalOptionAmount": 1,
        "OptionTaxSource": "text",
        "AdditionalAccount": [
          {
            "Id": 1,
            "Value": "text",
            "Type": {
              "Id": 1,
              "Code": "text"
            }
          }
        ]
      }
    ]
  }
}

Buchungen freigeben

Version 1.2


post
Authorizations
Query parameters
apiKeystringOptional
testModebooleanOptional
showNullValuesbooleanOptionalDefault: false
Body
AddToExistingVoucherIdinteger · int32 | nullableOptional
CompanyCodeIdinteger · int32Optional
BookingDatestring · dateOptionalExample: 2025-06-27Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
VoucherProcessTypeIdinteger · int32Optional
BookingRuleTypeIdinteger · int32Optional
Descriptionstring | nullableOptional
Responses
201
Created
post
POST /openwowi/v1.2/AccountancyVoucherProcess/CreateRelease HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 452

{
  "AddToExistingVoucherId": 1,
  "NewVoucherImportRequest": {
    "VoucherDate": "2025-06-27",
    "PartnerReference": "text",
    "OwnReference": "text",
    "Description": "text"
  },
  "CompanyCodeId": 1,
  "BookingDate": "2025-06-27",
  "VoucherProcessTypeId": 1,
  "BookingRuleTypeId": 1,
  "Description": "text",
  "Bookings": [
    {
      "MasterAccountId": 1,
      "BookingText": "text",
      "SalesTaxId": 1,
      "DebitCredit": "Debit",
      "Amount": 1,
      "Maturity": "2025-06-27",
      "AdditionalAccount": [
        {
          "AdditionalAccountTypeId": 1,
          "Id": 1
        }
      ]
    }
  ]
}
{
  "Id": 1,
  "NodeId": 1,
  "VoucherDate": "2025-06-27",
  "VoucherNumber": "text",
  "VoucherType": {
    "Id": 1,
    "Code": "text"
  },
  "PartnerReference": "text",
  "OwnReference": "text",
  "Description": "text",
  "VoucherProcess": {
    "Id": 1,
    "CompanyCode": {
      "Id": 1,
      "Name": "text",
      "Code": "text"
    },
    "VoucherProcessType": {
      "Id": 1,
      "Code": "text"
    },
    "BookingRuleType": {
      "Id": 1,
      "Code": "text"
    },
    "Description": "text",
    "FiscalYearNumber": 1,
    "BookingPeriodNumber": 1,
    "BookingDate": "2025-06-27",
    "ReleaseDate": "2025-06-27",
    "BookingNumber": "text",
    "Bookings": [
      {
        "Id": 1,
        "MasterAccount": {
          "Id": 1,
          "Code": "text"
        },
        "SalesTax": {
          "Id": 1,
          "Code": "text"
        },
        "DebitCredit": "Debit",
        "Amount": 1,
        "Maturity": "2025-06-27",
        "OptionTaxPercentage": 1,
        "OriginalGrossAmount": 1,
        "OriginalOptionAmount": 1,
        "OptionTaxSource": "text",
        "AdditionalAccount": [
          {
            "Id": 1,
            "Value": "text",
            "Type": {
              "Id": 1,
              "Code": "text"
            }
          }
        ]
      }
    ]
  }
}

Last updated