Werk #15677: downtimes: response with correct error message when host does not exist
Komponente | REST API | ||||
Titel | downtimes: response with correct error message when host does not exist | ||||
Datum | 14.04.2023 | ||||
Level | Kleine Änderung | ||||
Klasse | Bugfix | ||||
Kompatibilität | Kompatibel - benötigt kein manuelles Eingreifen | ||||
Checkmk versions & editions |
|
This werk introduces a fix to the endpont
- /domain-types/downtime/collections/host
Previously when you provided a host that didn't exist the response would be
{
"title": "Bad Request",
"status": 400,
"detail": "These fields have problems: host_name",
"fields": {
"host_name": [
"Host 'example.com' exists, but is not monitored. Activate the configuration?"
]
}
}
we now reply with
{
"title": "Bad Request",
"status": 400,
"detail": "These fields have problems: host_name",
"fields": {
"host_name": [
"Host not found: 'example.com'"
]
}
}