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

image.delete

Description 说明

object image.delete(array imageIds)

This method allows to delete images.此方法允许删除图像。

Parameters 参数

(array) IDs of the images to delete.要删除的图像的ID。

Return values 返回值

(object) Returns an object containing the IDs of the deleted images under the imageids property.返回一个包含“imageid”属性下删除图像ID的对象。

Examples 示例

Delete multiple images 删除多个图像

Delete two images.删除两个图像

Request:

{
           "jsonrpc": "2.0",
           "method": "image.delete",
           "params": [
               "188",
               "192"
           ],
           "auth": "3a57200802b24cda67c4e4010b50c065",
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "imageids": [
                   "188",
                   "192"
               ]
           },
           "id": 1
       }

Source来源

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