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

"formfields" MDO List

•
Environment: onsite, online
Some tooltip text!
• 1 minute to read
 • 1 minute to read

List of customizable fields for forms

Implemented by the FormFieldsProvider class. The name of the MDO list is 'formfields'.

Sample Request

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

Sample Code

var listProvider = ClassFactory.CreateRequired<SuperOffice.CRM.Lists.ISoListProviderFactory>().Create("formfields", 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
24 Company - Department
22 Company - Interests
16 Company - Name
17 Company - VAT no.
15 Company - Phone
13 Contact - Consent
11 Contact - Academic title
26 Contact - Birthday
9 Contact - Country
8 Contact - Direct phone
5 Contact - E-mail
2 Contact - First name
23 Contact - Interests
25 Contact - Preferred language
4 Contact - Last name
3 Contact - Middle name
7 Contact - Mobile
10 Contact - Mr/Mrs
1 Contact - Name
12 Contact - Position
6 Contact - Title

Related MDO Lists

  • "formfieldsheadings"
  • "formfieldsheadingswithallitem"
  • "formfieldsheadingswithallitemwithnoselection"
  • "formfieldsheadingswithnoselection"
  • "formfieldswithallitem"
  • "formfieldswithallitemwithnoselection"
  • "formfieldswithnoselection"
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top