Ticket types
Search
Search a ticket type
			GET https://api.deskero.com/ticketType/list
		
		
		Headers
| Header | Value | 
|---|---|
| Authorization | Bearer {{bearer}} | 
| Accept | application/json | 
| clientId | {{clientId}} | 
URL parameters
| Field name | Value | Required | Default | 
|---|---|---|---|
| page | int value for page to show | false | 1 | 
| {{fieldName}} | a value to search | false | 
Example request
$ curl https://api.deskero.com/ticketType/list?type=incident\ 
  -v \
  -H "Accept: application/json" \
  -H "Authorization: Bearer 58cfg61g-1585-5c72-g35f-7fe76893ed2f" \
  -H "clientId: 51f01687e4b094c81d7b8bcdellef"
Example response
{
  "ticket": {
    "totalRecords": 1,
    "recordsPerPage": 25,
    "previousQuery": null,
    "nextQuery": null,
    "records": [
      See ticket type detail
    ]
  }
}