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

"tickettype" MDO List

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

TicketTypeProvider creates a flat list based on the table: TICKET_TYPE

Implemented by the TicketTypeProvider class. The name of the MDO list is 'tickettype'.

Additional Attributes

Description Name Example Value
onlyForMenu false
Flag to indicate a call is coming from admin system IgnoreGroupingAndHeadingsForAdmin

Sample Request

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

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("tickettype", 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 Request isDefault=1&description=&defaultStatus=0&defaultPriority=0&showInNew=0&excludeSignature=0&excludeEmailRecipients=0&externalAsDefault=0&replyForwardNoSignature=0&replyExternalAsDefault=0

Related MDO Lists

  • "tickettypeheadings"
  • "tickettypeheadingswithallitem"
  • "tickettypeheadingswithallitemwithnoselection"
  • "tickettypeheadingswithnoselection"
  • "tickettypewithallitem"
  • "tickettypewithallitemwithnoselection"
  • "tickettypewithnoselection"
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top