Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 1.16 KB

File metadata and controls

56 lines (39 loc) · 1.16 KB
uid title keywords description so.generated so.topic so.envir
crmfields
crmfields
mdoprovider mdo provider crmfields
true
reference
onsite, online

"crmfields" MDO List

Implemented by the CrmFieldMdoProvider class. The name of the MDO list is 'crmfields'.

Sample Request

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

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("crmfields", 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

  • "crmfieldsheadings"
  • "crmfieldsheadingswithallitem"
  • "crmfieldsheadingswithallitemwithnoselection"
  • "crmfieldsheadingswithnoselection"
  • "crmfieldswithallitem"
  • "crmfieldswithallitemwithnoselection"
  • "crmfieldswithnoselection"