Skip to main content

Delete Pending Run

Delete a single run that is queued for execution. Note that executing runs cannot be deleted currently.

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

Request

Parameters

deletePendingRun
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 run to delete.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
status Execution status of the command success, failure

Examples

Request

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

Response

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