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

service.deletetimes

Description说明

object service.deletetimes(string/array serviceIds)

This method allows to delete all service times from services此方法允许从服务中删除所有服务时间.

Parameters参数

(string/array) IDs of the services to delete all service times from删除所有服务时间的服务的ID.

Return values返回值

(object) Returns an object containing the IDs of the affected services under the serviceids property. (object)返回一个包含serviceids属性下受影响的服务ID的对象.

Examples范例

Deleting service times from an service从服务中删除服务时间

Delete all service times from service "2"从服务"2"删除所有服务时间.

Request请求:

{
           "jsonrpc": "2.0",
           "method": "service.deletetimes",
           "params": [
               "2"
           ],
           "auth": "3a57200802b24cda67c4e4010b50c065",
           "id": 1
       }

Response响应:

{
           "jsonrpc": "2.0",
           "result": {
               "serviceids": [
                   "2"
               ]
           },
           "id": 1
       }

See also参考

Source源码

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