Verkehrssicherung
Die Endpunkte dieser Endpunktberechtigung finden Sie im Controller "SafetyInsepction" verfügbar
Um Verkehrssicherungen bearbeiten zu können, muss die Endpunktberechtigung "Sicherheitsüberprüfungen ändern" aktiviert werden.
Abfragen zur Verkehrssicherung können in den Objektdaten vorgenommen werden.
Die Endpunkte der Version 1.2 sind momentan in der Entwicklung und können noch Änderungen erfahren.
Neue Verkehrssicherung anlegen
Version 1.2
post
Authorizations
Query parameters
apiKeystringRequired
Body
LandIdinteger · int32 | nullableOptional
BuildingIdinteger · int32 | nullableOptional
InspectionDatestring · dateOptionalExample:
2025-06-27
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
InspectionPeriodFromstring · date-timeOptional
InspectionPeriodTostring · date-time | nullableOptional
AuditorPersonIdinteger · int32 | nullableOptional
ProtocolFileIdinteger · int32 | nullableOptional
Descriptionstring | nullableOptional
IdNumstring | nullableOptional
Responses
201
Created
400
Bad Request
401
Unauthorized
post
POST /openwowi/v1.2/SafetyInspectionEdit/SafetyInspection?apiKey=text HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 230
{
"LandId": 1,
"BuildingId": 1,
"InspectionDate": "2025-06-27",
"InspectionPeriodFrom": "2025-06-27T09:19:14.592Z",
"InspectionPeriodTo": "2025-06-27T09:19:14.592Z",
"AuditorPersonId": 1,
"ProtocolFileId": 1,
"Description": "text",
"IdNum": "text"
}
{
"Id": 1,
"IdNum": "text"
}
Verkehrssicherung bearbeiten
Version 1.2
put
Authorizations
Path parameters
safetyInspectionIdinteger · int32Required
Query parameters
apiKeystringRequired
Body
LandIdinteger · int32 | nullableOptional
BuildingIdinteger · int32 | nullableOptional
InspectionDatestring · dateOptionalExample:
2025-06-27
Pattern: \d{4}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])
InspectionPeriodFromstring · date-timeOptional
InspectionPeriodTostring · date-time | nullableOptional
AuditorPersonIdinteger · int32 | nullableOptional
ProtocolFileIdinteger · int32 | nullableOptional
Descriptionstring | nullableOptional
Responses
200
OK
400
Bad Request
401
Unauthorized
put
PUT /openwowi/v1.2/SafetyInspectionEdit/SafetyInspection/{safetyInspectionId}?apiKey=text HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 215
{
"LandId": 1,
"BuildingId": 1,
"InspectionDate": "2025-06-27",
"InspectionPeriodFrom": "2025-06-27T09:19:14.592Z",
"InspectionPeriodTo": "2025-06-27T09:19:14.592Z",
"AuditorPersonId": 1,
"ProtocolFileId": 1,
"Description": "text"
}
{
"Id": 1,
"IdNum": "text"
}
Verkehrssicherung löschen
Version 1.2
delete
Authorizations
Path parameters
safetyInspectionIdinteger · int32Required
Query parameters
apiKeystringRequired
Responses
200
OK
400
Bad Request
401
Unauthorized
delete
DELETE /openwowi/v1.2/SafetyInspectionEdit/SafetyInspection/{safetyInspectionId}?apiKey=text HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"Id": 1,
"IdNum": "text"
}
Verkehrssicherung Ergebnis anlegen
Version 1.2
post
Authorizations
Path parameters
safetyInspectionIdinteger · int32Required
Query parameters
apiKeystringOptional
Body
Namestring | nullableOptional
UnavailablebooleanOptional
IsOperativebooleanOptional
InImminentDangerbooleanOptional
CommissionIdinteger · int32 | nullableOptional
Responses
201
Created
Responseinteger · int32
400
Bad Request
401
Unauthorized
post
POST /openwowi/v1.2/SafetyInspectionEdit/SafetyInspection/{safetyInspectionId}/Result HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 94
{
"Name": "text",
"Unavailable": true,
"IsOperative": true,
"InImminentDanger": true,
"CommissionId": 1
}
1
Verkehrssicherung Ergebnis bearbeiten
Version 1.2
put
Authorizations
Path parameters
safetyInspectionIdinteger · int32Required
safetyInspectionResultIdinteger · int32Required
Query parameters
apiKeystringOptional
Body
Namestring | nullableOptional
UnavailablebooleanOptional
IsOperativebooleanOptional
InImminentDangerbooleanOptional
CommissionIdinteger · int32 | nullableOptional
Responses
200
OK
Responseinteger · int32
400
Bad Request
401
Unauthorized
put
PUT /openwowi/v1.2/SafetyInspectionEdit/SafetyInspection/{safetyInspectionId}/Result/{safetyInspectionResultId} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 94
{
"Name": "text",
"Unavailable": true,
"IsOperative": true,
"InImminentDanger": true,
"CommissionId": 1
}
1
Verkehrssicherung Ergebnis löschen
Version 1.2
delete
Authorizations
Path parameters
safetyInspectionIdinteger · int32Required
safetyInspectionResultIdinteger · int32Required
Query parameters
apiKeystringOptional
Responses
200
OK
Responseinteger · int32
400
Bad Request
401
Unauthorized
delete
DELETE /openwowi/v1.2/SafetyInspectionEdit/SafetyInspection/{safetyInspectionId}/Result/{safetyInspectionResultId} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
1
Last updated