Skip to main content

Create Requests by Owner

Generate change requests for a review. Equivalent to the Create Change Requests button on the Change Preview tab of a review.

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

note

This command only applies to reviews configured to generate requests explicitly by owner. It is ignored for reviews configured to generate requests automatically. A 412 is returned if the review is not configured for explicit-by-owner request generation.

Request

Parameters

createRequestsByOwner
The ID of the review result to create change requests for.
groupSpecifies how changes are grouped into requests.

Valid values depend on the review type:
  • User reviews: Reviewer | PerComponent | PerAsset
  • Account reviews: Reviewer | PerComponentResource | PerComponent | PerAsset
  • Group and role reviews: PerComponent
format

xml - (Default) Returns output as XML.

json - Useful for parsing into JavaScript or other languages. See www.json.org for details.

tokenDeprecated. Use the Authorization request header instead.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

nameThe name of the review.
statussuccess or failure
messageOptional message returned with the status.

Examples

Request

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

Response

{
"data": {
"type": "createRequestsByOwner",
"status": "success",
"name": "UAR-5"
}
}

Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.

See Also