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 commentand- Show commentsendpoints:- entry_timenow shows the date stamp in ISO 8601 format.
Before: "Jun 03 2024 06:05:41" Now: "2024-03-06T06:05:41+00:00"
- Show downtimeand- Show all schedulled downtimes.- recurringand- is_servicefields now are boolean types.
Before:
recurring: "yes"
is_service: "no"
Now:
recurring: true
is_service: false