Vertragssicherheit

Die Endpunkte der Version 1.2 sind momentan in der Entwicklung und können noch Änderungen erfahren.

Abruf Vertragssicherheiten

Version 1.0


GET/openwowi/v1.0/RentAccounting/ContractSecurity
Authorization
Query parameters
Response

OK

Body
Idinteger (int32)
LicenseAgreementIdinteger (int32)
ContractSecurityTypeIdinteger (int32)
ContractSecurityTypenullable string
ValidFromstring (date)
Example: "2025-02-05"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
ValidTonullable string (date)
Example: "2025-02-05"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
CollateralDebitAmountnumber (decimal)
CollateralActualAmountnullable number (decimal)
CollateralDatenullable string (date)
Example: "2025-02-05"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
Ratesnullable boolean
FormerVirtualIbannullable string
ContractNotenullable string
Request
const response = await fetch('/openwowi/v1.0/RentAccounting/ContractSecurity', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "LicenseAgreementId": 1,
    "ContractSecurityTypeId": 1,
    "ContractSecurityType": "text",
    "ValidFrom": "2025-02-05",
    "ValidTo": "2025-02-05",
    "CollateralDebitAmount": 1,
    "CollateralActualAmount": 1,
    "CollateralDate": "2025-02-05",
    "Rates": true,
    "FormerVirtualIban": "text",
    "ContractNote": "text"
  }
]

Version 1.2



Last updated