Ticket type
A ticket type says what kind of request a ticket is — an incident, a question, a change. Types are defined per tenant, identified by their name, and ordered for display by position.
They are seeded when a tenant is created and are read-only over the API for now.
Returns the tenant's ticket types — what kind of request a ticket is. position is the order they are meant to be shown in.
Filterable and sortable — name, displayName, position, autoAssign, createdAt, updatedAt.
The list is read-only; the entries are seeded with the tenant.
Token issued by the central equipme authentication, sent as Bearer <token>.
JSON filter expression
Free-text term — no effect here
Comma-separated field:direction terms
Selection of fields and relations
name,displayNameNumber of entries to skip
0Page size, 1 to 100
100OK
Bad Request
Unauthorized
Forbidden
Internal Server Error
GET /api/v1/ticket-types HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"count": 1,
"data": [
{
"assignmentContext": "text",
"autoAssign": true,
"createdAt": "2026-01-01T00:00:00.000Z",
"displayName": "Incident",
"name": "incident",
"position": 1,
"updatedAt": "2026-01-01T00:00:00.000Z"
}
]
}Last updated
Was this helpful?