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 27.1.1. For the JSON schema refer to section 27.1.2.
Example
GET http://127.0.0.1:8110/api/version/get?version=0
HTTP Response Body
{
"anynode": {
"versionRelease": 14,
"versionMajor": 4,
"versionMinor": 11
},
"java": {"version": "1.8.0_372"},
"administration": {
"versionRelease": 0,
"versionMajor": 4,
"versionMinor": 9
},
"monitor": {
"versionRelease": 2,
"versionMajor": 4,
"versionMinor": 11
},
"frontend": {
"versionRelease": 13,
"versionMajor": 4,
"versionMinor": 11
}
}