GET api/Ticket_Type
Retrieves all of the ticket types in the system.
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"name": "sample string 1",
"system_type": 2,
"id": 1
},
{
"name": "sample string 1",
"system_type": 2,
"id": 1
},
{
"name": "sample string 1",
"system_type": 2,
"id": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfticket_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.Ticketing">
<ticket_type>
<id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
<name>sample string 1</name>
<system_type>2</system_type>
</ticket_type>
<ticket_type>
<id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
<name>sample string 1</name>
<system_type>2</system_type>
</ticket_type>
<ticket_type>
<id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
<name>sample string 1</name>
<system_type>2</system_type>
</ticket_type>
</ArrayOfticket_type>
