ReleaseInfo Data Type

Server version information.

Properties
name data type description
build_date number Build date.
build_number number Product build number.
content_version string
product_name string Name of the product.
product_version string Product version.
server_start_time number Date and time when the server last started.
appliance_version string Version of the server appliance.
appliance_build_number number Appliance build number.
Properties inherited from BaseRestObject
href string The path to this resource object. This is relative to the root of the REST API (https://serveraddress/rest).
links array of Link Links to related resources. These should be used to navigate the REST API (instead of hard-coding the URLs)

Example

{
  "build_date" : 12345,
  "build_number" : 12345,
  "content_version" : "...",
  "product_name" : "...",
  "product_version" : "...",
  "server_start_time" : 12345,
  "appliance_version" : "...",
  "appliance_build_number" : 12345,
  "href" : "...",
  "links" : [ {
    "href" : "...",
    "rel" : "..."
  }, {
    "href" : "...",
    "rel" : "..."
  } ]
}