Kataloge

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

Rechtsform

Version 1.2


GET/openwowi/v1.2/RentAdjustmentCatalog/LegalState
Authorization
Query parameters
Response

OK

Body
Idinteger (int32)
Codenullable string
Request
const response = await fetch('/openwowi/v1.2/RentAdjustmentCatalog/LegalState', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "Code": "text"
  }
]

Gemeinde

Version 1.2


GET/openwowi/v1.2/RentAdjustmentCatalog/Municipality
Authorization
Query parameters
Response

OK

Body
Idinteger (int32)
Keynullable string
Descriptionnullable string
MunicipalityTypenullable all of
Request
const response = await fetch('/openwowi/v1.2/RentAdjustmentCatalog/Municipality', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "Key": "text",
    "Description": "text",
    "MunicipalityType": {
      "Id": 1,
      "Code": "text"
    }
  }
]

Kappungsgrenze

Version 1.2


GET/openwowi/v1.2/RentAdjustmentCatalog/CapLimit
Authorization
Query parameters
Response

OK

Body
Idinteger (int32)
Codenullable string
Percentagenumber (decimal)
Request
const response = await fetch('/openwowi/v1.2/RentAdjustmentCatalog/CapLimit', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "Code": "text",
    "Percentage": 1
  }
]

Sondermerkmale

Version 1.2


GET/openwowi/v1.2/RentAdjustmentCatalog/SpecialAttribute
Authorization
Query parameters
Response

OK

Body
Idinteger (int32)
Codenullable string
SurchargeReductionboolean
Request
const response = await fetch('/openwowi/v1.2/RentAdjustmentCatalog/SpecialAttribute', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "Code": "text",
    "SurchargeReduction": true
  }
]

Ausstattung-Merkmalsgruppe

Version 1.2


GET/openwowi/v1.2/RentAdjustmentCatalog/FacilityCharacteristicGroup
Authorization
Query parameters
Response

OK

Body
Idinteger (int32)
Codenullable string
PercentValuenumber (decimal)
Request
const response = await fetch('/openwowi/v1.2/RentAdjustmentCatalog/FacilityCharacteristicGroup', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "Code": "text",
    "PercentValue": 1
  }
]

Ausstattungsmerkmal

Version 1.2


GET/openwowi/v1.2/RentAdjustmentCatalog/FacilityCharacteristic
Authorization
Query parameters
Response

OK

Body
Idinteger (int32)
Codenullable string
IsPositiveboolean
Groupnullable all of
Municipalitynullable all of
Request
const response = await fetch('/openwowi/v1.2/RentAdjustmentCatalog/FacilityCharacteristic', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "Id": 1,
    "Code": "text",
    "IsPositive": true,
    "Group": {
      "Id": 1,
      "Code": "text",
      "PercentValue": 1
    },
    "Municipality": {
      "Id": 1,
      "Key": "text"
    }
  }
]

Last updated