Get scheduled action results
Spaces method and path for this operation:
<div><span class="operation-verb get">get</span> <span class="operation-path">/s/{space_id}/api/osquery/scheduled_results/{scheduleId}/{executionCount}</span></div>Refer to Spaces for more information.
Get paginated per-agent action results for a specific scheduled query execution, with success/failure aggregation and execution metadata (pack name, query name/text, timestamp).
Path parameters
The schedule ID of the scheduled query.
The schedule ID of the scheduled query.
The execution count for this scheduled query run.
The execution count for this scheduled query run.
Query parameters
The kuery to filter the results by.
The kuery to filter the results by.
The page number to return. The default is 1.
The page number to return. The default is 1.
The number of results to return per page. The default is 20.
The number of results to return per page. The default is 20.
The field that is used to sort the results.
The field that is used to sort the results.
Specifies the sort order.
Specifies the sort order.
Response
Indicates a successful call.
Example response
{
"aggregations": {
"failed": 1,
"pending": 0,
"successful": 9,
"totalResponded": 10,
"totalRowCount": 42
},
"currentPage": 0,
"edges": [
{
"_id": "result-001",
"fields": {
"agent_id": "16d7caf5-efd2-4212-9b62-73dafc91fa13",
"rows_count": 5,
"status": "success"
}
}
],
"metadata": {
"executionCount": 3,
"packId": "42ba9c50-0cc5-11ed-aa1d-2b27890bc90d",
"packName": "My Pack",
"queryName": "uptime",
"queryText": "select * from uptime;",
"scheduleId": "pack_my_pack_uptime",
"timestamp": "2024-07-26T09:00:00.000Z"
},
"pageSize": 20,
"total": 10,
"totalPages": 1
}