object authentication.update(object authentication)
This method allows to update existing authentication 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.
(object)
Propiedades de autenticación a ser actualizadas.
(array)
Devuelve un array con los nombres de los parámetros que han sido actualizados.
Petición:
{
"jsonrpc": "2.0",
"method": "authentication.update",
"params": {
"http_auth_enabled": 1,
"http_case_sensitive": 0,
"http_login_form": 1
},
"auth": "038e1d7b1735c6a5436ee9eae095879e",
"id": 1
}
Respuesta:
{
"jsonrpc": "2.0",
"result": [
"http_auth_enabled",
"http_case_sensitive",
"http_login_form"
],
"id": 1
}
CAuthentication::update() en ui/include/classes/api/services/CAuthentication.php.