Skip to main content

Get Help Link

Obtain an URL to help documentation. By default, an URL to the main help page is returned.

GET https://instance.securid.com/aveksa/command.submit?cmd=getHelpLink

Request

Parameters

getHelpLink
formatproperties - (Default) key=value. most useful when requesting a single object. If multiple objects are returned, values is a csv. ie key=value1,value2,value3 where value1 is the value for the first object, value2 is the value for the 2nd object, etc.

json - Useful format for parsing into javascript or other languages. See www.json.org for details.
help-idThe id of the help page to return. If this parameter is not present, or if it does not map to a valid help page, the main help page will be returned.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
help-linkThe URL to the help page.

Examples

Request

curl -K -X GET  \
"https://instance.securid.com/aveksa/command.submit?cmd=getHelpLink&format=json" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"

Response

{
"data": {
"type": "getHelpLink",
"help-link": "https://instance.securid.com/aveksa/help/Launch_Help.htm#cshid=1"
}
}