About
Display version information for the server.
GET https://instance.securid.com/aveksa/command.submit?cmd=about
Request
Parameters
| about | |
| format | properties - (Default) Returns the response as key=value pairs.json - Returns the response as JSON. |
Headers
Bearer token | |
| Accept | application/json |
| Content-Type | application/json |
Response
Parameters
server-version | The version of the server software. |
database-version | The version of the database schema. |
patches | The list of patches installed on the server. Empty if none are installed. |
Examples
Request
- Curl
- Python
- Node.js
curl -K -X GET \
"https://instance.securid.com/aveksa/command.submit?cmd=about&format=json" \
-H "Authorization: Bearer <token>"
import requests
url = "https://instance.securid.com/aveksa/command.submit"
params = {
"cmd": "about",
"format": "json"
}
headers = {
'Authorization': 'Bearer <token>'
}
response = requests.get(url, params=params, headers=headers)
if response.status_code == 200:
data = response.json()
print(data)
else:
print(f"Request failed with status code {response.status_code}")
const axios = require('axios');
const url = "https://instance.securid.com/aveksa/command.submit";
const params = {
cmd: "about",
format: "json"
};
const headers = {
'Authorization': 'Bearer <token>'
};
axios.get(url, { params, headers })
.then(response => {
if (response.status === 200) {
console.log(response.data);
} else {
console.log(`Request failed with status code ${response.status}`);
}
})
.catch(error => {
console.error('Error:', error);
});
Response
- 200 (JSON)
- 200 (Properties)
- 401 Invalid Token
{
"data": {
"type": "about",
"database-version": "8.0.0.184636",
"server-version": "8.0.0.184636",
"patches": "P10_HF01"
}
}
Default format when format is omitted.
database-version=8.0.0.184636
server-version=8.0.0.184636
patches=P10_HF01
<html>
<head>
<title>Error</title>
</head>
<body>The token is not valid for the command 'about'. Token is invalid or expired</body>
</html>
Verified with RSA Governance & Lifecycle version 8.0.0.184636 P10_HF01.