Skip to main content

Get Run Status

Get the status of a collection or review generation run.

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

note

Requires a user with System:Manage privilege.

Request

Parameters

getRunStatus
formatproperties - (Default) Returns the response as key=value pairs.

json - Returns the response as JSON.
The numeric ID of the run. Retrieve this from the run-id field returned by any collect command.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

overall-statusThe current status of the run. Confirmed values: New Running Completed Aborted
start-timeThe time the run started.
completed-timeThe time the run ended. Present when overall-status is Completed or Aborted. For aborted runs, completed-time equals start-time.

Examples

Request

curl -K -X GET \
"https://instance.securid.com/aveksa/command.submit?cmd=getRunStatus&format=json&run-id=1001" \
-H "Authorization: Bearer <token>"

Response

completed-time is absent while the run is in progress.

{
"data": {
"type": "getRunStatus",
"overall-status": "Running",
"start-time": "2026-01-15 10:00:00"
}
}

Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.

See Also