Get scheduled query 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}/results</span></div>Refer to Spaces for more information.
Get paginated query result rows (the actual osquery output data) for a specific scheduled query execution.
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.
The start date filter (ISO 8601) to narrow down results.
The start date filter (ISO 8601) to narrow down results.
Response
Indicates a successful call.
Example response
{
"data": {
"edges": [
{
"_id": "row-001",
"fields": {
"host.uptime": [
"12345"
]
}
},
{
"_id": "row-002",
"fields": {
"host.uptime": [
"67890"
]
}
}
],
"total": 2
}
}