Skip to main content

Get Run Status

Determine the status of a given run (collection or review generation).

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

Request

Parameters

getRunStatus
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.
The id of the run to delete.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
overall-statusThe overall status of the run. Possible values are New, Running, Completed, Aborted
start-timeThe time the run started.
completed-timeThe time the run completed. This property is only returned if the run is completed.

Examples

Request

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

Response

{
"data": {
"type": "getRunStatus",
"overall-status": "Completed",
"start-time": "2022-03-24 10:34:01",
"completed-time": "2022-03-24 10:34:06"
}
}