Skip to main content

Refresh Review

Refresh information used in a review.

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

note

Only user and account reviews are supported by this API.

Request

Parameters

refreshReview
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.
coveragetrue, false Indicates that the coverage should be refreshed. (Default) true
clearreassignmentstrue, false Indicates that reassignements should be cleared. This parameter is only used when coverage=true. (Default) false
userstrue, false Indicates that user data should be refreshed. (Default) true
groupstrue, false Indicates that group data should be refreshed. (Default) true
rolestrue, false Indicates that role data should be refreshed. (Default) true
entitlementstrue, false Indicates that entitlement data should be refreshed. (Default) true
resourcestrue, false Indicates that resource data should be refreshed. (Default) false
accountstrue, false Indicates that account data should be refreshed. (Default) true
descriptionstrue, false Indicates that the description information used in the review should be refreshed.
reviewAnalysistrue, false Indicates that counts displayed in new review ui should be refreshed. (Default) true
applicationsA list of the applications comma delimited that should be refreshed. This is only used if entitlements=true. If the entitlements=true and this parameter is not provided, all applications will be refreshed.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
nameThe name of the review.
run-idThe id assigned to the refreshing of the review. Use getRunStatus to check the status of the run after this call.

Examples

Request

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

Response

{
"data": {
"type": "refreshReview",
"run-id": "5932",
"name": "UAR-3"
}
}