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

"udlist" MDO List

Some tooltip text!
• 1 minute to read
 • 1 minute to read

MDO Provider for 'user-defined' lists, i.e., those that reside in the UDList table. Mandatory additionalInfo is the udListId, which identifies the actual sublist. There is also a dynamic provider that will make a provider called 'udlist<id>, for instance udlist123, where the sublist id is part of the name. Nice if you are in a situation where you can only get a list name and not the additionalInfo as a separate parameter.

Implemented by the UdListMDOProvider class. The name of the MDO list is 'udlist'.

Additional Attributes

Description Name Example Value
UD List id 1234

Sample Request

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

Sample Code

var listProvider = ClassFactory.CreateRequired<SuperOffice.CRM.Lists.ISoListProviderFactory>().Create("udlist", 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
2 Example

Related MDO Lists

  • "udlistheadings"
  • "udlistheadingswithallitem"
  • "udlistheadingswithallitemwithnoselection"
  • "udlistheadingswithnoselection"
  • "udlistwithallitem"
  • "udlistwithallitemwithnoselection"
  • "udlistwithnoselection"
In This Article
  • Additional Attributes
  • Sample Request
  • Sample Code
  • Sample Output
  • Related MDO Lists
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top