Skip to main content

Run Review

Generate a review.

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

Request

Parameters

runReview
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 name of the review to run.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
run-idThe id assigned to the generation of the review. Use getRunStatus to check the status of the run after this call. This same id is also used in the getReviewResult command once the run is completed to get the result id.

Examples

Request

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

Response

{
"data": {
"type": "runReview",
"run-id": "5919"
}
}