Skip to main content

Run Review

Trigger a review cycle by name.

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

caution

The name parameter requires the review definition name (for example, UAR), not an instance name (for example, UAR-1). Passing an instance name returns 404 Could not find review. There is no API to list review definition names; they must be obtained from the RSA G&L UI or database.

Request

Parameters

runReview
formatproperties - (Default) Returns the response as key=value pairs. When multiple objects are returned, values are comma-delimited: key=value1,value2,value3.

json - Returns the response as JSON.
The definition name of the review to run.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
run-idThe ID assigned to this review run. Pass it to Get Review Result once the run completes to retrieve the review instance id.

Examples

Request

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

Response

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

Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.

See Also