/
var
/
www
/
html
/
sugardemo
/
include
/
api
/
help
/
Upload File
HOME
<!-- /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ --> <h2>Overview</h2> <span class="lead"> Retrieves the locale data for the user </span> <h2>Summary</h2> <span class="lead"> This endpoint will return a set of locale settings, formatted as options, for the requested user. </span> <h2>Request Arguments</h2> <table class="table table-hover"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Description</th> <th>Required</th> </tr> </thead> <tbody> <tr> <td>actions</td> <td>Array</td> <td>Array of actions to be performed</td> <td>Yes</td> </tr> </tbody> </table> <h3>Request</h3> <pre class="pre-scrollable"> <code> [ { 'type': 'CopyDashboards', 'dashboards': ['id1', 'id2'], 'modules': ['Accounts', 'Contacts'], 'sourceUser': 'source-user-id', 'destinationUsers': ['destinationUserId1', 'destinationUserId2'], }, { 'type': 'DeleteFilters', 'filters': ['fid1', 'fid2'], 'modules': [], 'sourceUser': 'source-user-id', 'destinationUsers': ['destinationUserId1', 'destinationUserId2'], } ] </code> </pre> <h3>Response</h3> <pre class="pre-scrollable"> <code> true </code> </pre> <h2>Change Log</h2> <table class="table table-hover"> <tr> <th>Version</th> <th>Change</th> </tr> <tr> <td> v11_15 </td> <td> Added <code>/userUtilities</code> POST endpoint. </td> </tr> </table>