string apiinfo.version(array)
This method allows to retrieve the version of the Zabbix API.
auth
parameter in the JSON-RPC request. Starting from Zabbix 2.4 the method will return an error if the auth
parameter is given.
(array)
The method accepts an empty array.
(string)
Returns the version of the Zabbix API.
Retrieve the version of the Zabbix API.
Request:
{ "jsonrpc": "2.0", "method": "apiinfo.version", "params": [], "id": 1, "auth": "16a46baf181ef9602e1687f3110abf8a" }
Response:
{ "jsonrpc": "2.0", "result": "2.2.5", "id": 1 }
CAPIInfo::version() in frontends/php/api/classes/CAPIInfo.php.