Skip to main content

Commit Role

Commit current pending changes to a role.

POST https://instance.securid.com/aveksa/command.submit?cmd=commitRole

Request

Parameters

commitRole
The ID of the role for which changes will be committed.
formatproperties - (Default) Returns the response as key=value pairs.

json - Returns the response as JSON.
tokenDeprecated. Use the Authorization request header instead.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Body

Send the proposed role changes as the request body. The body may be empty to commit changes already staged on the server.

Response

Parameters

crIdThe change request ID created for the role update.
crNameThe change request name created for the role update.
statussuccess or failure
messageOptional message returned with the status.

Examples

Request

curl -K -X POST \
"https://instance.securid.com/aveksa/command.submit?cmd=commitRole&format=json&roleId=6764" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"

Response

{
"data": {
"status": "success",
"crId": "1234",
"crName": "Update Role: Test Role 3"
}
}

Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.

See Also