VersionResponse Data Type

Response for a request asking for the version of the REST API on the server.

Properties
name data type constraints description
version string   Current server version
messages array of Message   Messages contained in the response (which should be shown to the user)
variant string   Server Variant (OSS for the Open Source Variant, EE for the Enterprise Edition Variant)
responseInfo ResponseInfo  
cmpVersion string   Respective CMP version for this CMS version
inBackground boolean required boolean Whether the job was pushed into the background.
nodeInfo map of CmpVersionInfo   Get the map containing CMP component version information for each node.

Example

{
  "version" : "5.38.0",
  "messages" : [ { }, { } ],
  "variant" : "OSS",
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  },
  "cmpVersion" : "7.9",
  "inBackground" : true,
  "nodeInfo" : {
    "property1" : {
      "meshVersion" : "2.1.16",
      "portalType" : "...",
      "portalVersion" : "...",
      "compatibility" : "UNKNOWN"
    },
    "property2" : {
      "meshVersion" : "3.0.5",
      "portalType" : "...",
      "portalVersion" : "...",
      "compatibility" : "NOT_SUPPORTED"
    }
  }
}