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

"suggestedstopword" MDO List

• 1 minute to read
 • 1 minute to read

Analyze free text records and suggest stop words based on word frequency. Return only words with more than 1000 instances.

Implemented by the SuggestedStopWordProvider class. The name of the MDO list is 'suggestedstopword'.

Sample Request

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

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("suggestedstopword", 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
0 SMTP
1 46
2 AND
3 HTTP
4 HTTPS
5 UNIVERSITY
6 ENGINEER
7 CA
8 TX
9 CORP
10 CEDEX
11 OF
12 IN
13 47
14 INC
15 COLLEGE
16 FL
17 33
18 PARK
19 HILL
20 ASSISTANT

Related MDO Lists

  • "suggestedstopwordheadings"
  • "suggestedstopwordheadingswithallitem"
  • "suggestedstopwordheadingswithallitemwithnoselection"
  • "suggestedstopwordheadingswithnoselection"
  • "suggestedstopwordwithallitem"
  • "suggestedstopwordwithallitemwithnoselection"
  • "suggestedstopwordwithnoselection"
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Back to top