2022 Zabbix中国峰会
2022 Zabbix中国峰会

itemprototype.delete

Description 说明

object itemprototype.delete(array itemPrototypeIds)

This method allows to delete item prototypes.此方法允许删除item prototypes。

Parameters 参数

(array) IDs of the item prototypes to delete.要删除的item prototypes的ID

Return values 返回值

(object) Returns an object containing the IDs of the deleted item prototypes under the prototypeids property.返回一个对象,该对象包含“prototypeids”属性下的已删除item prototypes的ID。

Examples 示例

Deleting multiple item prototypes

Delete two item prototypes.

Request:

{
           "jsonrpc": "2.0",
           "method": "itemprototype.delete",
           "params": [
               "27352",
               "27356"
           ],
           "auth": "3a57200802b24cda67c4e4010b50c065",
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "prototypeids": [
                   "27352",
                   "27356"
               ]
           },
           "id": 1
       }

Source 来源

CItemPrototype::delete() in frontends/php/include/classes/api/services/CItemPrototype.php.