This is the documentation page for an unsupported version of Zabbix.
Is this not what you were looking for? Switch to the current version or choose one from the drop-down menu.

housekeeping.update

説明

object housekeeping.update(object housekeeping)

このメソッドでは、既存の housekeeping 設定を更新することができます。

このメソッドは、Super admin ユーザータイプにのみ使用できます。このメソッドを呼び出す許可は、
ユーザーロール設定で取り消すことができます。詳細については、User roles を参照してください。

Parameters

(object) 更新されるHousekeeping プロパティ

戻り値

(array) 更新されたパラメータの名前を配列で返します。

Request:

{
           "jsonrpc": "2.0",
           "method": "housekeeping.update",
           "params": {
               "hk_events_mode": "1",
               "hk_events_trigger": "200d",
               "hk_events_internal": "2d",
               "hk_events_discovery": "2d"
           },
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": [
               "hk_events_mode",
               "hk_events_trigger",
               "hk_events_internal",
               "hk_events_discovery"
           ],
           "id": 1
       }

ソース

CHousekeeping::update() in ui/include/classes/api/services/CHousekeeping.php.