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.

settings.update

Description

object settings.update(object settings)

This method allows to update existing common settings.

This method is only available to Super admin user type. Permissions to call the method can be revoked in user role settings. See User roles for more information.

Parameters

(object) Settings properties to be updated.

Return values

(array) Returns array with the names of updated parameters.

Examples

Request:

{
           "jsonrpc": "2.0",
           "method": "settings.update",
           "params": {
               "login_attempts": "1",
               "login_block": "1m"
           },
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": [
               "login_attempts",
               "login_block"
           ],
           "id": 1
       }

Source

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