Skip to main content

Keep Alive

Keep a token, retrieved from Login User, alive. Calling this command creates activity for the token. This activity is used to determine if the tokens inactivity timeout has been exceeded, but it is not used in the calculation of the tokens lifespan timeout.

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

note

This API call in not valid for tokens generated using Login as Trusted Application

Request

Parameters

keepAlive
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.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name

Examples

Request

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

Response

{
"data": {
"type": "keepAlive"
}
}