Skip to main content

Run Report

Run a report defined in the system and generate results.

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

Request

Parameters

runReport
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.
nameThe name of a report to generate results for.
descAn optional description for the generated results.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
run-idThe id assigned to the generation of the report. Use getRunStatus to check the status of the run after this call.

Examples

Request

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

Response

{
"data": {
"type": "runReport",
"run-id": "5511"
}
}