For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI referenceRelease notes
DocumentationAPI referenceRelease notes
  • Release notes
    • Overview
    • Changelog
      • Overview
      • Adapter Email replaced
      • AngularJS libraries removed
      • Ansible Playbook task response fixed
      • Automation Catalog deprecated and removed
      • Customizable UI not allowed in Platform 6
      • Decision task replaced by Evaluation task
      • Default adapter protocol
      • Delete Variables API removed
      • Dot notation not allowed in job variable names
      • ENC encryption deprecated
      • Form Builder removed
      • Get Server Health API changed
      • Itential Tools updated
      • OperationId tasks removed in Platform 6
      • Operational Data tab removed in Config Manager
      • Pre-Builts deprecation
      • Profiles deprecation
      • pushToArray requires preexisting arrays
      • Reduced integration responses
      • Remove default self-signed TLS certificates from container image
      • Retrieve references endpoint replaced
      • Server name property replaced
      • Service Catalog and Service Catalog Builder removed
      • Verify Config task removed
LogoLogo
Open sourceSupportFAQsDocs Home
On this page
  • What changed
  • Why this change was made
  • What should I do?
Release notesBreaking changes

Get Server Health API changed

Was this page helpful?
Previous

Itential Tools updated

Next
Built with

The getServerHealth API, corresponding to the HTTP route GET /health/server, has been changed to more accurately reflect the new release versioning practices adopted with Platform 6.

What changed

The response object previously returned version and release properties as follows:

  • version — The Build Version of the Platform.
  • release — The Release Version of the Platform.

After this change, the version, release, and new build properties are returned as follows:

  • version — The Release Version of the Platform. This is the version communicated in release materials and documentation.
  • build — The Build Version, which was previously returned by the version property.
  • release — The Release Version, now redundant with version. Retained to lessen the breaking nature of this change.

Old response:

1{
2 "version": "2025.21.0",
3 "release": "6.0.1"
4}

New response:

1{
2 "version": "6.0.1",
3 "release": "6.0.1",
4 "build": "2025.13.1"
5}

Why this change was made

This change better aligns Itential Platform with the versioning communicated to customers. Platform now identifies its own version accurately as the Release Version presented to users in marketing materials and documentation.

What should I do?

If any of your use cases depend on the exact versioning pattern previously returned by the version field of getServerHealth, update that use case to use the new build field, or to operate in terms of the Release Version now returned by version.

Both the Build Version and Release Version follow semantic versioning. The difference between the two is only the actual content of the value.

If you need additional support or require more information, contact the Product Support Team.