Skip to main content

Get Change Request Status

Get the status of a change request and its individual line items.

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

Request

Parameters

getChangeRequestStatus
The ID of the change request.
delimiterThe delimiter used to separate fields within a request-item-status entry. Defaults to |. When a request contains more than one change request item, each item is separated by the delimiter repeated twice (e.g. || by default).
format

xml - (Default) Returns status 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

overall-statusThe overall status of the change request. For example: Pending, InProgress, Completed, Cancelled.
start-timeThe time the request was started.
request-item-statusA delimited string containing the status of each change request line item. Each item contains four fields separated by the delimiter: itemId, action, status, comments. Multiple items are separated by the delimiter repeated twice.
completed-timeThe time the request completed. Only returned when the request is in a terminal state (Completed or Cancelled).

Examples

Request

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

Response

{
"data": {
"type": "getChangeRequestStatus",
"overall-status": "Completed",
"start-time": "2026-05-15 17:39:21",
"request-item-status": "262|Add|Completed| ",
"completed-time": "2026-05-15 17:40:17"
}
}

See Also

Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.