Konditionen

Konditionen abrufen

Version 1.0


GET/openwowi/v1.0/Loans/LoanCondition
Authorization
Query parameters
Response

OK

Body
LoanIdinteger (int32)
IdNumnullable string
AnnuityHeaderIdnullable integer (int32)
AnnuityPerMaturitynullable number (decimal)
TermFromstring (date)
Example: "2025-01-25"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
TermTonullable string (date)
Example: "2025-01-25"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
LoanTermsTypeIdinteger (int32)
LoanTermsTypeCodenullable string
Amountnullable number (decimal)
Percentagenullable number (decimal)
LoanBaseIdinteger (int32)
LoanBaseCodenullable string
ChangeReasonCostItemIdinteger (int32)
ChangeReasonCostItemCodenullable string
FirstMaturitynullable string (date)
Example: "2025-01-25"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
NextMaturitynullable string (date)
Example: "2025-01-25"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
FixedMaturitynullable string (date)
Example: "2025-01-25"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
MaturityDateTypeIdinteger (int32)
MaturityDateTypeCodenullable string
MaturityPeriodIdinteger (int32)
MaturityPeriodCodenullable string
PeriodOfPerformanceFromIdinteger (int32)
PeriodOfPerformanceFromCodenullable string
PeriodOfPerformanceToIdinteger (int32)
PeriodOfPerformanceToCodenullable string
RoundingTypeIdinteger (int32)
RoundingTypeCodenullable string
AmortizationSettingOffnullable string (date)
Example: "2025-01-25"
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
Request
const response = await fetch('/openwowi/v1.0/Loans/LoanCondition', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "LoanId": 0,
    "IdNum": "text",
    "AnnuityHeaderId": 0,
    "AnnuityPerMaturity": 0,
    "TermFrom": "2025-01-25",
    "TermTo": "2025-01-25",
    "LoanTermsTypeId": 0,
    "LoanTermsTypeCode": "text",
    "Amount": 0,
    "Percentage": 0,
    "LoanBaseId": 0,
    "LoanBaseCode": "text",
    "ChangeReasonCostItemId": 0,
    "ChangeReasonCostItemCode": "text",
    "FirstMaturity": "2025-01-25",
    "NextMaturity": "2025-01-25",
    "FixedMaturity": "2025-01-25",
    "MaturityDateTypeId": 0,
    "MaturityDateTypeCode": "text",
    "MaturityPeriodId": 0,
    "MaturityPeriodCode": "text",
    "PeriodOfPerformanceFromId": 0,
    "PeriodOfPerformanceFromCode": "text",
    "PeriodOfPerformanceToId": 0,
    "PeriodOfPerformanceToCode": "text",
    "RoundingTypeId": 0,
    "RoundingTypeCode": "text",
    "AmortizationSettingOff": "2025-01-25"
  }
]

Ab Version 1.2 können die Konditionen über einen Parameter im Abruf des Darlehens eingeschlossen werden.

Last updated