Wohnungsübergabe
Die Endpunkte dieser Endpunktberechtigung finden Sie im Controller "HandoverEdit".
Um auf die Daten der Wohnungsübergaben über die API zugreifen zu können, muss die Endpunktberechtigung "Übergaben bearbeiten" aktiviert werden.
Die Daten für Ableseergebnisse in den Wohnungsübergaben werden nicht in die Verbrauchsdaten übertragen. Die Endpunkte werden diesbezüglich ggf. noch überarbeitet.
Wohnungsübergaben anlegen
Version 1.2
post
Authorizations
Query parameters
apiKeystringRequired
Body
ExternalIdentificationNumberstring | nullableOptional
LicenseAgreementIdinteger · int32Optional
ResponsibleOfficialIdinteger · int32Optional
HandoverTypeSpecificationIdinteger · int32Optional
HandoverTypeIdinteger · int32Optional
HandoverStateIdinteger · int32Optional
Datestring · date-timeOptional
RequireNextHandoverbooleanOptional
ProtocolDeliveryViaMailbooleanOptional
Remarkstring | nullableOptional
KeyExchangeInfostring | nullableOptional
Responses
201
Created
400
Bad Request
401
Unauthorized
post
POST /openwowi/v1.2/HandoverEdit/Handover?apiKey=text HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 292
{
"ExternalIdentificationNumber": "text",
"LicenseAgreementId": 1,
"ResponsibleOfficialId": 1,
"HandoverTypeSpecificationId": 1,
"HandoverTypeId": 1,
"HandoverStateId": 1,
"Date": "2025-06-27T09:19:14.652Z",
"RequireNextHandover": true,
"ProtocolDeliveryViaMail": true,
"Remark": "text",
"KeyExchangeInfo": "text"
}
{
"Id": 1,
"IdNum": "text"
}
Wohnungsübergaben ändern
Version 1.2
put
Authorizations
Path parameters
handoverIdinteger · int32Required
Query parameters
apiKeystringRequired
Body
ExternalIdentificationNumberstring | nullableOptional
LicenseAgreementIdinteger · int32Optional
ResponsibleOfficialIdinteger · int32Optional
HandoverTypeSpecificationIdinteger · int32Optional
HandoverTypeIdinteger · int32Optional
HandoverStateIdinteger · int32Optional
Datestring · date-timeOptional
RequireNextHandoverbooleanOptional
ProtocolDeliveryViaMailbooleanOptional
Remarkstring | nullableOptional
KeyExchangeInfostring | nullableOptional
ConsentRefusedbooleanOptional
AgreementDateContractorstring · date | nullableOptionalExample:
2025-06-27
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
Responses
200
OK
400
Bad Request
401
Unauthorized
put
PUT /openwowi/v1.2/HandoverEdit/Handover/{handoverId}?apiKey=text HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 353
{
"ExternalIdentificationNumber": "text",
"LicenseAgreementId": 1,
"ResponsibleOfficialId": 1,
"HandoverTypeSpecificationId": 1,
"HandoverTypeId": 1,
"HandoverStateId": 1,
"Date": "2025-06-27T09:19:14.652Z",
"RequireNextHandover": true,
"ProtocolDeliveryViaMail": true,
"Remark": "text",
"KeyExchangeInfo": "text",
"ConsentRefused": true,
"AgreementDateContractor": "2025-06-27"
}
{
"Id": 1,
"IdNum": "text"
}
Wohnungsübergaben löschen
Version 1.2
delete
Authorizations
Path parameters
handoverIdinteger · int32Required
Query parameters
apiKeystringRequired
Responses
200
OK
400
Bad Request
401
Unauthorized
delete
DELETE /openwowi/v1.2/HandoverEdit/Handover/{handoverId}?apiKey=text HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"Id": 1,
"IdNum": "text"
}
Wohnungsübergaben Details hinzufügen
Version 1.2
put
Authorizations
Path parameters
handoverIdinteger · int32Required
Query parameters
apiKeystringRequired
Body
Datestring · dateOptionalExample:
2025-06-27
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
Remarkstring | nullableOptional
KeyExchangeInfostring | nullableOptional
ConsentRefusedbooleanOptional
RequireNextHandoverbooleanOptional
ProtocolDeliveryViaMailbooleanOptional
AgreementDateContractorstring · date | nullableOptionalExample:
2025-06-27
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
Responses
200
OK
400
Bad Request
401
Unauthorized
put
PUT /openwowi/v1.2/HandoverEdit/Handover/{handoverId}/Data?apiKey=text HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 554
{
"Date": "2025-06-27",
"Remark": "text",
"KeyExchangeInfo": "text",
"ConsentRefused": true,
"RequireNextHandover": true,
"ProtocolDeliveryViaMail": true,
"AgreementDateContractor": "2025-06-27",
"ContractParties": [
{
"ContractualUseId": 1,
"IsAttending": true
}
],
"Facilities": [
{
"FacilityId": 1,
"Note": "text",
"Components": [
{
"ComponentsId": 1,
"RequiredWorkId": 1,
"RestorationDutyId": 1,
"IsContractual": true,
"IsWorking": true,
"Note": "text",
"ShortDescription": "text",
"MeteringValue": {
"Number": "text",
"Amount": 1
}
}
]
}
],
"UseUnitKeys": [
{
"UseUnitKeyId": 1,
"ExchangedKeys": 1,
"Note": "text"
}
]
}
{
"Id": 1,
"IdNum": "text"
}
Last updated