Kataloge

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

Darlehensarten

Dieser Abruf enthält die Darlehensarten, welche dem Darlehen zugeordnet werden können.

Version 1.0


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

OK

Body
Idinteger (int32)
Codenullable string
IsPassiveboolean
IsGroundRentboolean
MetaMasterAccountInterestIdnullable integer (int32)
MetaMasterAccountInterestCodenullable string
MetaMasterAccountInterestNamenullable string
MetaMasterAccountRepaymentIdnullable integer (int32)
MetaMasterAccountRepaymentCodenullable string
MetaMasterAccountRepaymentNamenullable string
Request
const response = await fetch('/openwowi/v1.0/Loans/LoanTypes', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "Code": "text",
    "IsPassive": true,
    "IsGroundRent": true,
    "MetaMasterAccountInterestId": 1,
    "MetaMasterAccountInterestCode": "text",
    "MetaMasterAccountInterestName": "text",
    "MetaMasterAccountRepaymentId": 1,
    "MetaMasterAccountRepaymentCode": "text",
    "MetaMasterAccountRepaymentName": "text"
  }
]

Version 1.2


GET/openwowi/v1.2/LoansCatalog/LoanTypes
Authorization
Query parameters
Response

OK

Body
Idinteger (int32)
NodeIdinteger (int32)
Codenullable string
ShortCodenullable string
IsPassiveboolean
IsGroundRentboolean
LoanSettlementTypenullable all of
MetaMasterAccountInterestnullable all of
MetaMasterAccountRepaymentnullable all of
Request
const response = await fetch('/openwowi/v1.2/LoansCatalog/LoanTypes', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "NodeId": 1,
    "Code": "text",
    "ShortCode": "text",
    "IsPassive": true,
    "IsGroundRent": true,
    "LoanSettlementType": {
      "Id": 1,
      "Code": "text"
    },
    "MetaMasterAccountInterest": {
      "Id": 1,
      "Code": "text"
    },
    "MetaMasterAccountRepayment": {
      "Id": 1,
      "Code": "text"
    }
  }
]

Last updated