Skip to main content

Delete Pending Run

Delete a single run that is queued for execution.

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

note

Requires a user with System:Manage privilege. Only runs in New (queued) state can be deleted. Runs that have already started or completed return a 400 error.

Request

Parameters

deletePendingRun
formatproperties - (Default) Returns the response as key=value pairs.

json - Returns the response as JSON.
The numeric ID of the run to delete. Retrieve this from the run-id field returned by any collect command.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

statusResult of the operation. Returns success on success.

Examples

Request

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

Response

{
"data": {
"type": "deletePendingRun",
"status": "success"
}
}

Verified with RSA Governance & Lifecycle version 8.0.0.188886 P10_HF01.

See Also