2 Version
2.1 Get
GET https://<HOST>:<PORT>/api/version/get?version=0
Returns version numbers for all products.
Required Permissions
-
API
Request parameters
-
product
Select the component for which the version should be returned.
Type: String
Possible Values:
-
anynode
-
ucma
-
administration
-
monitor
-
frontend
-
java
-
Response Body Structure
The response body is structured as SoftwareVersion JSON object. A description for its fields is at section 30.1.1. For the JSON schema refer to section 30.1.2.
Example
GET http://127.0.0.1:8888/api/version/get?version=0
HTTP Response
HTTP/1.1 200 OK
HTTP Response Body
{
"anynode": {
"versionRelease": 84,
"versionMajor": 4,
"versionMinor": 11
},
"java": {"version": "11.0.22"},
"administration": {
"versionRelease": 0,
"versionMajor": 4,
"versionMinor": 11
},
"monitor": "Service Unavailable",
"frontend": {
"versionRelease": 0,
"versionMajor": 255,
"versionMinor": 0
}
}