Skip to main content
Retrieve a list of events. Note: To pass additional Zabbix parameters, use the Additional Parameters field with the following format:
{
  "params": {
    "output": "extend",
    "selectAcknowledges": "extend"
  }
}
For more information about the request permissions, refer to Zabbix API documentation.
External DocumentationTo learn more, visit the Zabbix documentation.

Basic Parameters

ParameterDescription
AcknowledgedSelect to return only acknowledged events.
Event IDsA comma-separated list of event IDs to filter events by.
Group IDsSelect the user groups to filter results by. Can be obtained from the List User Groups action.
Host IDsA comma-separated list of host IDs to filter results by. Can be obtained from the List Hosts action.
LimitThe maximum number of results to return.
Request IDThe ID to send with the request.
SearchThe search query to filter events by.

For more information about the search supported types, refer to Zabbix data types documentation.
Time FromThe start time to filter results from.
Time TillThe end time to filter results to.

Advanced Parameters

ParameterDescription
Additional ParametersA JSON object for additional body parameters. Values specified in this parameter will override equivalent parameters.

For example:
{
“first_key”: 12345,
“second_key”: “some_value”
}
The object must follow the vendor’s structure as defined in the API documentation.

Example Output

{
	"jsonrpc": "2.0",
	"result": [
		{
			"eventid": "503",
			"source": "0",
			"object": "0",
			"objectid": "23162",
			"clock": "1747212236",
			"value": "1",
			"acknowledged": "1",
			"ns": "413470863",
			"name": "Number of installed packages has been changed",
			"severity": "2",
			"r_eventid": "0",
			"c_eventid": "0",
			"correlationid": "0",
			"userid": "0",
			"cause_eventid": "0",
			"acknowledges": [
				{
					"userid": "10",
					"action": "2"
				}
			],
			"opdata": "",
			"suppressed": "0",
			"urls": []
		}
	],
	"id": 1
}

Workflow Library Example

List Events with Zabbix and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop