Get Help Link
Retrieve a URL to help documentation.
GET https://instance.securid.com/aveksa/command.submit?cmd=getHelpLink
Request
Parameters
| getHelpLink | |
| format | properties - (Default) Returns the response as key=value pairs.json - Returns the response as JSON. |
| help-id | The ID of the help page to return. If omitted or if the ID does not map to a valid page, the main help page is returned. |
Headers
Bearer token | |
| Accept | application/json |
| Content-Type | application/json |
Response
Parameters
help-link | The URL to the help page. |
Examples
Request
- Curl
- Python
- Node.js
curl -K -X GET \
"https://instance.securid.com/aveksa/command.submit?cmd=getHelpLink&format=json" \
-H "Authorization: Bearer <token>"
import requests
url = "https://instance.securid.com/aveksa/command.submit"
params = {
"cmd": "getHelpLink",
"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: "getHelpLink",
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)
- 401 Invalid Token
{
"data": {
"type": "getHelpLink",
"help-link": "https://instance.securid.com/aveksa/help/Launch_Help.htm#cshid=1"
}
}
<html>
<head>
<title>Error</title>
</head>
<body>The token is not valid for the command 'getHelpLink'. Token is invalid or expired</body>
</html>
Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.