object authentication.update(object authentication)
このメソッドは、既存の認証設定を更新することができます。
このメソッドは、Super adminタイプのユーザーのみ利用可能です。メソッドを呼び出す権限は、ユーザーの役割の設定で取り消すことができます。詳細はユーザーの役割を参照してください。
(object) 更新する認証のプロパティ。
(array) 更新したパラメーターの名前を配列で返します。
{
           "jsonrpc": "2.0",
           "method": "authentication.update",
           "params": {
               "http_auth_enabled": 1,
               "http_case_sensitive": 0,
               "http_login_form": 1
           },
           "id": 1
       }レスポンス:
{
           "jsonrpc": "2.0",
           "result": [
               "http_auth_enabled",
               "http_case_sensitive",
               "http_login_form"
           ],
           "id": 1
       }CAuthentication::update() in ui/include/classes/api/services/CAuthentication.php.