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

"statusdef" MDO List

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

Return list of status monitors defined in the system. Additional info query parameter = "Contact" or "project".

Implemented by the StatusDefProvider class. The name of the MDO list is 'statusdef'.

Additional Attributes

Description Name Example Value
Include deleted records GetDeletedStatusDefs True
Name of owner table GetOwnerTable Project

Separator: &

Sample Request

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

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("statusdef", 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 C-company IsVisual=True&OwnerTable=contact&BinaryObjectId=306
3 Not completed activites with intention sale IsVisual=True&OwnerTable=project&BinaryObjectId=445
1 Neglected customer IsVisual=True&OwnerTable=contact&BinaryObjectId=307

Related MDO Lists

  • "statusdefheadings"
  • "statusdefheadingswithallitem"
  • "statusdefheadingswithallitemwithnoselection"
  • "statusdefheadingswithnoselection"
  • "statusdefwithallitem"
  • "statusdefwithallitemwithnoselection"
  • "statusdefwithnoselection"
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top