Skip to main content

Get Review Status

Returns the summary for a given review.

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

Request

Parameters

getReviewStatus
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 id of the review result obtained from getReviewResult.

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 type for review.
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.
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.

Examples

Request

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

Response

{
"data": {
"type": "getReviewStatus",
"state": "InActionable",
"name": "Azure Role #3-1",
"unassigned-review-items": "0",
"saved-entitlements": "0",
"saved-accounts": "0",
"reviewed-accounts": "0",
"reviewed-entitlements": "0",
"total-entitlements": "667",
"start-date": "2023-08-03 20:12:08",
"description": "",
"review-type": "account",
"total-accounts": "667"
}
}