You are viewing documentation for the development version, it may be incomplete.
Join our translation project and help translate Zabbix documentation into your native language.

autoregistration.update

Description

object autoregistration.update(object autoregistration)

This method allows to update existing autoregistration.

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) Autoregistration properties to be updated.

Return values

(boolean ) Returns boolean true as result on successful update.

Examples

Request:

{
           "jsonrpc": "2.0",
           "method": "autoregistration.update",
           "params": {
               "tls_accept": "3",
               "tls_psk_identity": "PSK 001",
               "tls_psk": "11111595725ac58dd977beef14b97461a7c1045b9a1c923453302c5473193478"
           },
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": true,
           "id": 1
       }

Source

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