GET api/Status/Get

Retrieves all of the statuses in the system.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "is_resolved": true,
    "name": "sample string 2",
    "system_type": 3,
    "id": 1
  },
  {
    "is_resolved": true,
    "name": "sample string 2",
    "system_type": 3,
    "id": 1
  },
  {
    "is_resolved": true,
    "name": "sample string 2",
    "system_type": 3,
    "id": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfstatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.Ticketing">
  <status>
    <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
    <is_resolved>true</is_resolved>
    <name>sample string 2</name>
    <system_type>3</system_type>
  </status>
  <status>
    <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
    <is_resolved>true</is_resolved>
    <name>sample string 2</name>
    <system_type>3</system_type>
  </status>
  <status>
    <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
    <is_resolved>true</is_resolved>
    <name>sample string 2</name>
    <system_type>3</system_type>
  </status>
</ArrayOfstatus>