object proxy.create(object/array proxies)
This method allows to create new proxies.
This method is only available to Super admin user type. Permissions to call the method can be revoked in user role settings. See User roles for more information.
(object/array)
Proxies to create.
Additionally to the standard proxy properties, the method accepts the following parameters.
Parameter | Type | Description |
---|---|---|
hosts | array | Hosts to be monitored by the proxy. If a host is already monitored by a different proxy, it will be reassigned to the current proxy. The hosts must have only the hostid property defined. |
(object)
Returns an object containing the IDs of the created proxies under the proxyids
property. The order of the returned IDs matches the order of the passed proxies.
Create an action proxy "Active proxy" and assign a host to be monitored by it.
{
"jsonrpc": "2.0",
"method": "proxy.create",
"params": {
"name": "Active proxy",
"operating_mode": "0",
"hosts": [
{
"hostid": "10279"
}
]
},
"id": 1
}
Response:
Create a passive proxy "Passive proxy" and assign two hosts to be monitored by it.
{
"jsonrpc": "2.0",
"method": "proxy.create",
"params": {
"name": "Passive proxy",
"operating_mode": "1",
"address": "127.0.0.1",
"port": "10051",
"hosts": [
{
"hostid": "10192"
},
{
"hostid": "10139"
}
]
},
"id": 1
}
Response:
Create an active proxy "Active proxy" and add it to proxy group with ID "1".
{
"jsonrpc": "2.0",
"method": "proxy.create",
"params": {
"name": "Active proxy",
"proxy_groupid": "1",
"operating_mode": "0"
},
"id": 1
}
Response:
CProxy::create() in ui/include/classes/api/services/CProxy.php.