January 2019
Intermediate to advanced
798 pages
20h 33m
English
The Zabbix API is request-response-based. We send a request and get a response—either the data we requested or a success/failure indicator. Let's look at some simple, practical examples of what we can do with the API. We'll use simple curl requests to the API. Let's try this on the Zabbix server:
$ curl -s -X POST -H 'Content-Type: application/json-rpc' -d '' http://127.0.0.1/zabbix/api_jsonrpc.php
In this request, note the following:
Read now
Unlock full access