It seems like your browser didn't download the required fonts. Please revise your security settings and try again.

End-of-Sale/Renewals for Models 100 and 200

As of October 4th, 2020, new sales for models 100 and 200 of the Barracuda Email Security Gateway ceased. As of November 30, 2023, renewals for models 100 and 200 of the Barracuda Email Security Gateway have ceased. 

User.update_pref

  • Last updated on

This method updates the preferences for the user account specified. The output of a successful call is a simple '200 OK'.

Parameters Allowed

The following variables are used by the user.update_pref method. These variables should be provided as part of the request XML in the HTTP POST request.

  • password – A required parameter which the API uses to authenticate access to a page and which is set by your administrator.
  • domain – A required parameter that specifies the user account whose preference is to be updated.

First, use the config.set method to set the user- specific variables for preferences, then use this method to update the preferences.

Arguments

user: test@abcd.com

Sample Request
 <?xml version="1.0" encoding="UTF8"?>
<methodCall>
 <methodName>user.update_pref</methodName>
  <params>
   <param>
    <value>
     <struct>
      <member>
       <name>user</name>
        <value>
         <string>
          <![CDATA[test@abcd]]>
         </string>
        </value>
       </member>
      </struct>
     </value>            
    </param>        
  </params>    
</methodCall>