Skip to main content

Get Review Status

Returns the status summary for a review instance.

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

Request

Parameters

getReviewStatus
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.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
nameThe name of the review.
descriptionThe description for the review.
review-typeThe review type.
stateThe state of the review.
start-dateThe date the review was started.
due-dateThe date the review is due (only returned if the review has a specific due date set).
complete-dateThe date the review was completed. Not currently returned even when state is Completed.
reviewed-entitlementsThe number of entitlements reviewed.
saved-entitlementsThe number of entitlements saved.
total-entitlementsThe total number of entitlements in the review.
reviewed-usersThe number of users reviewed.
certified-usersThe number of certified users (only returned if the review supports certification).
saved-usersThe number of users saved.
total-usersThe total number of users in the review.
reviewed-accountsThe number of accounts reviewed (only valid for account reviews).
certified-accountsThe number of certified accounts (only returned if the account review supports certification).
saved-accountsThe number of accounts saved (only valid for account reviews).
total-accountsThe total number of accounts in the review (only valid for account reviews).
unassigned-review-itemsThe number of unassigned review items.
unassigned-certification-itemsThe number of unassigned certification items.
caution

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

Examples

Request

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

Response

{
"data": {
"type": "getReviewStatus",
"state": "Completed",
"name": "UAR-5",
"unassigned-review-items": "0",
"saved-entitlements": "0",
"total-users": "15",
"due-date": "2026-06-24 15:26:57",
"saved-users": "0",
"reviewed-entitlements": "6",
"total-entitlements": "62",
"start-date": "2026-06-20 15:26:57",
"description": "",
"review-type": "user",
"reviewed-users": "0"
}
}

Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.

See Also