object hostgroup.massremove(object parameters)
This method allows to remove related objects from multiple host groups.
This method is only available to Admin and Super admin user types. Permissions to call the method can be revoked in user role settings. See User roles for more information.
(object)
Parameters containing the IDs of the host groups to update and the objects that should be removed.
Parameter | Type | Description |
---|---|---|
groupids | string/array | IDs of the host groups to be updated. Parameter behavior: - required |
hostids | string/array | Hosts to remove from all host groups. |
(object)
Returns an object containing the IDs of the updated host groups under the groupids
property.
Remove two hosts from the given host groups.
{
"jsonrpc": "2.0",
"method": "hostgroup.massremove",
"params": {
"groupids": [
"5",
"6"
],
"hostids": [
"30050",
"30001"
]
},
"id": 1
}
Response:
CHostGroup::massRemove() in ui/include/classes/api/services/CHostGroup.php.