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

"udlist28" MDO List

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

Dynamic MDO provider that will create a list with the name udlist<id> for each user-defined list in the UDListDefinition table. The actual fetching is done by an inner for whatever list is implicitly specified by the id suffix of the dynamic list name

Implemented by the UdListIndividualProvider class. The name of the MDO list is 'udlist28'.

Sample Request

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

Sample Code

var listProvider = ClassFactory.CreateRequired<SuperOffice.CRM.Lists.ISoListProviderFactory>().Create("udlist28", 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
3 UdList one flat item four
1 UdList one flat item one
4 UdList one flat item three
2 UdList one flat item two

Related MDO Lists

  • "udlist28headings"
  • "udlist28headingswithallitem"
  • "udlist28headingswithallitemwithnoselection"
  • "udlist28headingswithnoselection"
  • "udlist28withallitem"
  • "udlist28withallitemwithnoselection"
  • "udlist28withnoselection"
In This Article
  • 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