Skip to main content

Update Unreviewed Items

Mark all unreviewed items in a review as either revoke or maintain in bulk.

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

note

When the review is not in an Active state, the server returns HTTP 200 with status: failure and message: The review is not in an active state. This is not a 4xx error.

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

updateUnreviewedItems
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 apply to all unreviewed items. Valid values: revoke maintain
unassignedUpdate unassigned review items. (Default) true
assignedUpdate assigned review items. (Default) true
groupingWhen state=revoke, controls how changes are grouped when generating change requests. Valid values: asset component all. Optional. The server accepts requests without this parameter.
commentOptional comment to attach to each updated item.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

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

Examples

Request

curl -K -X GET \
"https://instance.securid.com/aveksa/command.submit?cmd=updateUnreviewedItems&format=json&id=143&state=maintain&grouping=all&comment=Bulk+review+complete" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"

Response

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

Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.

See Also