Werk #16715: Rest API: Improvement of response data types
Component | REST API | ||
Title | Rest API: Improvement of response data types | ||
Date | Jun 13, 2024 | ||
Level | Trivial Change | ||
Class | Bug Fix | ||
Compatibility | Incompatible - Manual interaction might be required | ||
Checkmk versions & editions |
|
In order to improvide the Rest API, adjustments have been made to the
data types returned in the comments
and downtimes
endpoints as
specified below:
Show a comment
andShow comments
endpoints:entry_time
now shows the date stamp in ISO 8601 format.
Before: "Jun 03 2024 06:05:41" Now: "2024-03-06T06:05:41+00:00"
Show downtime
andShow all schedulled downtimes
.recurring
andis_service
fields now are boolean types.
Before:
recurring
: "yes"
is_service
: "no"
Now:
recurring
: true
is_service
: false