You are viewing documentation for the development version, it may be incomplete.
Join our translation project and help translate Zabbix documentation into your native language.

drule.delete

Description

object drule.delete(array discoveryRuleIds)

This method allows to delete discovery rules.

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.

Parameters

(array) IDs of the discovery rules to delete.

Return values

(object) Returns an object containing the IDs of the deleted discovery rules under the druleids property.

Examples

Delete multiple discovery rules

Delete two discovery rules.

Request:

{
           "jsonrpc": "2.0",
           "method": "drule.delete",
           "params": [
               "4",
               "6"
           ],
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "druleids": [
                   "4",
                   "6"
               ]
           },
           "id": 1
       }

Source

CDRule::delete() in ui/include/classes/api/services/CDRule.php.