Skip to main content

Set Review State

Change the state of a review instance.

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

caution

The RSA official reference documents a name parameter as mutually exclusive with id. Passing name without id returns 412 The parameter id is required. Always use id.

Request

Parameters

setReviewState
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 review instance ID returned by Get Review Result.
The state to set. Valid values: onhold active completed

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
nameThe name of the review.
statussuccess or failure
messageReturned when present. Describes the reason when status is failure.

Examples

Request

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

Response

{
"data": {
"type": "setReviewState",
"status": "success",
"name": "UAR-6"
}
}

Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.

See Also