integer/array screen.get(object parameters)
The method allows to retrieve screens according to the given parameters.
(object) Parameters defining the desired output.
The method supports the following parameters.
| Parameter | Type | Description |
|---|---|---|
| screenids | string/array | Return only screens with the given IDs. |
| screenitemids | string/array | Return only screen that contain the given screen items. |
| selectScreenItems | query | Return the screen items that are used in the screen. Does not support shorten or arrays of properties. |
| sortfield | string/array | Sort the result by the given properties. Possible values are: screenid and name. |
| countOutput | flag | These parameters being common for all get methods are described in detail on the Generic Zabbix API information page. |
| editable | boolean | |
| excludeSearch | flag | |
| filter | object | |
| limit | integer | |
| nodeids | string/array | |
| output | query | |
| preservekeys | flag | |
| search | object | |
| searchByAny | boolean | |
| searchWildcardsEnabled | boolean | |
| sortorder | string/array | |
| startSearch | flag |
(integer/array) Returns either:
countOutput parameter has been used.Retrieve all data about screen "26" and its screen items.
Request:
{ "jsonrpc": "2.0", "method": "screen.get", "params": { "output": "extend", "selectScreenItems": "extend", "screenids": "26" }, "auth": "038e1d7b1735c6a5436ee9eae095879e", "id": 1 }Response:
{ "jsonrpc": "2.0", "result": [ { "screenitems": [ { "screenitemid": "67", "screenid": "26", "resourcetype": "0", "resourceid": "612", "width": "320", "height": "200", "x": "0", "y": "0", "colspan": "0", "rowspan": "0", "elements": "25", "valign": "0", "halign": "0", "style": "0", "url": "", "dynamic": "0", "sort_triggers": "0" } ], "screenid": "26", "name": "CPU Graphs", "hsize": "3", "vsize": "2", "templateid": "0" } ], "id": 1 }CScreen::get() in frontends/php/api/classes/CScreen.php.