VersionResponse Data Type

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

Properties
name data type description
version string Current server version
cmpVersion string Respective CMP version for this CMS version
nodeInfo map of CmpVersionInfo Get the map containing CMP component version information for each node.
Properties inherited from GenericResponse
messages array of Message Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo

Example

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