modifySettingsRequest

Modifies a user's personal settings. Provide the field and value for each setting that you want to change. If an administrator has locked a client option setting, the setting has a locked element that cannot be changed.

Request

<modifySettingsRequest>
   <settings type="types:SettingsList"/>
</modifySettingsRequest>

Response

<modifySettingsResponse>
   <status type="types:Status”/>
</modifySettingsResponse>

Elements

settings

Specifies the setting name and new value.

code

Returns the error number related to the event. 0 indicates that the request was successful.

status

Returns the success or failure of the method.

Example

<modifySettingsRequest> 
   <settings> 
      <setting> 
         <field>mailPriority</field> 
         <value>Low</value> 
      </setting> 
   </settings> 
</modifySettingsRequest>

<modifySettingsResponse> 
   <status> 
      <code>0</code> 
   </status> 
</modifySettingsResponse>