GET api/Priority
Retrieves all of the priorities available 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:
<ArrayOfpriority xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.Ticketing"> <priority> <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id> <name>sample string 1</name> <system_type>2</system_type> </priority> <priority> <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id> <name>sample string 1</name> <system_type>2</system_type> </priority> <priority> <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id> <name>sample string 1</name> <system_type>2</system_type> </priority> </ArrayOfpriority>