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

"area" MDO List

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

List provider for the Heading table. While this table looks like an MDO table, it lacks the standardized grouplink and headinglink companion tables for good reason, since it is the heading table itself.

Implemented by the AreaProvider class. The name of the MDO list is 'area'.

Sample Request

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

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("area", 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
1 TestArea1
2 TestArea2

Related MDO Lists

  • "areaheadings"
  • "areaheadingswithallitem"
  • "areaheadingswithallitemwithnoselection"
  • "areaheadingswithnoselection"
  • "areawithallitem"
  • "areawithallitemwithnoselection"
  • "areawithnoselection"
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top