Retrieve a ticket type

You can fetch the details of a single ticket type.

SecurityHTTP: bearerAuth
Request
path Parameters
id
required
string

The unique identifier for the ticket type which is given by Intercom.

header Parameters
Intercom-Version
string (intercom_version)
Default: 2.11

Intercom API version.
By default, it's equal to the version set in the app package.

Enum: "1.0" "1.1" "1.2" "1.3" "1.4" "2.0" "2.1" "2.2" "2.3" "2.4" "2.5" "2.6" "2.7" "2.8" "2.9" "2.10" "2.11" "Unstable"
Example: 2.11
get
/ticket_types/{id}
Request samples
Responses

200

Ticket type found

Response Schema: application/json
type
string

String representing the object's type. Always has the value ticket_type.

id
string

The id representing the ticket type.

category
string

Category of the Ticket Type.

Enum: "Customer" "Back-office" "Tracker"
name
string

The name of the ticket type

description
string

The description of the ticket type

icon
string

The icon of the ticket type

workspace_id
string

The id of the workspace that the ticket type belongs to.

object (Ticket Type Attributes)

A list of attributes associated with a given ticket type.

archived
boolean

Whether the ticket type is archived or not.

created_at
integer <timestamp>

The date and time the ticket type was created.

updated_at
integer <timestamp>

The date and time the ticket type was last updated.

401

Unauthorized

Response samples
application/json
{ "type": "ticket_type", "id": "298", "name": "Bug Report", "description": "Bug Report Template", "icon": "🎟️", "workspace_id": "this_is_an_id605_that_should_be_at_least_", "archived": false, "created_at": 1715078026, "updated_at": 1715078026, "is_internal": false, "ticket_type_attributes": { "type": "list", }, "category": "Customer" }