Get Login Instructions
Retrieve the username label, password label, and login page message displayed on the login page. Field values may contain HTML or JavaScript.
GET https://instance.securid.com/aveksa/command.submit?cmd=getLoginInstructions
note
This command does not require authentication.
Request
Parameters
| getLoginInstructions | |
| format | properties - (Default) Returns the response as key=value pairs.json - Returns the response as JSON. |
Headers
| Accept | application/json |
| Content-Type | application/json |
Response
Parameters
username-label | The label for the username field. May contain HTML or JavaScript. |
password-label | The label for the password field. May contain HTML or JavaScript. |
instructions | Custom login page message. May be empty or contain HTML and JavaScript. |
Examples
Request
- Curl
- Python
- Node.js
curl -K -X GET \
"https://instance.securid.com/aveksa/command.submit?cmd=getLoginInstructions&format=json"
import requests
url = "https://instance.securid.com/aveksa/command.submit"
params = {
"cmd": "getLoginInstructions",
"format": "json"
}
response = requests.get(url, params=params)
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: "getLoginInstructions",
format: "json"
};
axios.get(url, { params })
.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)
{
"data": {
"type": "getLoginInstructions",
"instructions": "",
"username-label": "User Name",
"password-label": "Password"
}
}
Default format when format is omitted.
instructions=
username-label=User Name
password-label=Password
Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.