• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Edit
Show / Hide Table of Contents

"preferencesection" MDO List

•
Environment: onsite, online
Some tooltip text!
• 1 minute to read
 • 1 minute to read

MDO Provider that retrieves a list of preference sections

Preferences are described in the prefdesc table. This provider will retrieve descriptions for all sections.

Each item contains the programmatic section name in the extraInfo field.

Implemented by the PreferenceSectionProvider class. The name of the MDO list is 'preferencesection'.

Sample Request

GET /api/v1/MDOList/preferencesection
Authorization: Basic dGplMDpUamUw
Accept: application/json; charset=utf-8
Accept-Language: *

Sample Code

var listProvider = ClassFactory.CreateRequired<SuperOffice.CRM.Lists.ISoListProviderFactory>().Create("preferencesection", forceFlatList: true);
foreach (var item in listProvider.RootItems) {
    Console.WriteLine("{0} {1} {2} {3}", 
         item.Id, ResourceManager.ParseInlineResources(item.Name), item.StyleHint, item.ExtraInfo);
}

Sample Output

Id Name StyleHint ExtraInfo
1000010 Customer Centre password policy ccAuthentication
1000007 Client Client
1000549 SuperOffice Copilot Copilot
1000020 Statistics DataCollection
1000032 Default values Defaults
1000067 Diary DiaryView
1000095 Filter Dialog FilterDialog
1000097 Freetext search Freetext
1000105 Functions Functions
1000544 In-app communication InApp
1000160 E-mail Mail
1000222 Marketing Mailing
1000230 Grouped lists MDOList
1000541 Data mirroring Mirroring
1000301 Web Services NetServices
1000329 Notifications via popup notification
1000337 Notifications via e-mail notificationEmail
1000345 Notifications via SMS notificationSms
1000361 Contact Person
1000380 Mobile CRM PocketTasks
1000384 Request request

Related MDO Lists

  • "preferencesectionheadings"
  • "preferencesectionheadingswithallitem"
  • "preferencesectionheadingswithallitemwithnoselection"
  • "preferencesectionheadingswithnoselection"
  • "preferencesectionwithallitem"
  • "preferencesectionwithallitemwithnoselection"
  • "preferencesectionwithnoselection"
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top