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

"allpreferencekeys" MDO List

Some tooltip text!
• 2 minutes to read
 • 2 minutes to read

MDO Provider that retrieves all preference keys

All preferences that are not sections are returned, grouped alphabetically. If addidionalInfo is OrderBySection, it is first grouped alphabetically by section. Preferences that have list of values are bolded.

Implemented by the AllPreferenceKeysProvider class. The name of the MDO list is 'allpreferencekeys'.

Sample Request

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

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("allpreferencekeys", 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
1000106 Use academic title [SR_PD_Functions_NAME]
1000522 Enable sounds bold [SR_PD_Visual_NAME]
1000161 Address separator bold [SR_PD_Mail_NAME]
1000081 Alarm on follow-up [SR_PD_DiaryView_NAME]
1000068 All-day end time bold [SR_PD_DiaryView_NAME]
1000069 All-day start time bold [SR_PD_DiaryView_NAME]
1000162 Archive sent follow-ups [SR_PD_Mail_NAME]
1000163 Archive sent documents [SR_PD_Mail_NAME]
1000164 Archive forwarded e-mail [SR_PD_Mail_NAME]
1000107 Archive page size [SR_PD_Functions_NAME]
1000165 Archive replies [SR_PD_Mail_NAME]
1000166 Archive all e-mail bold [SR_PD_Mail_NAME]
1000167 Auto-archive e-mails sent from e-mail client. [SR_PD_Mail_NAME]
1000168 Archive e-mail to associates [SR_PD_Mail_NAME]
1000108 Ask to edit or read [SR_PD_Functions_NAME]
1000169 Use iCalendar attachment [SR_PD_Mail_NAME]
1000387 Automatically close tab when adding a message to request [SR_PD_request_NAME]
1000442 Automatically create contact for new inbound request [SR_PD_serviceSettings_NAME]
1000109 Limit for auto-loading [SR_PD_Functions_NAME]
1000380 Autologout time [SR_PD_PocketTasks_NAME]
1000390 Automatically quote the last message [SR_PD_request_NAME]

Related MDO Lists

  • "allpreferencekeysheadings"
  • "allpreferencekeysheadingswithallitem"
  • "allpreferencekeysheadingswithallitemwithnoselection"
  • "allpreferencekeysheadingswithnoselection"
  • "allpreferencekeyswithallitem"
  • "allpreferencekeyswithallitemwithnoselection"
  • "allpreferencekeyswithnoselection"
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top