Initiate a query job to retrieve alerts based on specified filter criteria.
External DocumentationTo learn more, visit the Varonis documentation.

Parameters

ParameterDescription
FiltersA filters object to filter all results by.

For example:
{
“id”: {
“neq”: “9cfb1c81-4c79-452f-b1f5-8ee6571276b4”
},
“status”: {
“in”: [“UNDER_INVESTIGATION”, “CLOSED”],
“eq”: “NEW”
},
“generationTime”: {
“lastdays”: 7
},
“isAssignedToVaronis”: {
“eq”: true
}
}
For more information about the Filters parameter, refer to Varonis API documentation

Example Output

{
	"data": {
		"jobId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4",
		"jobStatus": "PENDING",
		"jobProgress": 40,
		"results": [
			{
				"__typename": "Alert"
			}
		]
	}
}

Workflow Library Example

Create Alerts Query Job with Varonis and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop