Intercom API (2.11)

The intercom API reference.

Download OpenAPI description
Languages
Servers
The production API server
https://api.intercom.io/
The european API server
https://api.eu.intercom.io/
The australian API server
https://api.au.intercom.io/

Admins

Everything about your Admins

Operations

Articles

Everything about your Articles

Operations

Companies

Everything about your Companies

Operations

Contacts

Everything about your contacts

Operations

Conversations

Everything about your Conversations

Operations

Data Attributes

Everything about your Data Attributes

Operations

Data Events

Everything about your Data Events

Operations

Data Export

Everything about your Data Exports

Operations

Help Center

Everything about your Help Center

Operations

Messages

Everything about your messages

Operations

News

Everything about your News

Operations

Notes

Everything about your Notes

Operations

Segments

Everything about your Segments

Operations

Subscription Types

Everything about subscription types

Operations

Switch

Everything about Switch

Operations

Tags

Everything about tags

Operations

Teams

Everything about your Teams

Operations

Ticket Type Attributes

Everything about your ticket type attributes

Operations

Ticket Types

Everything about your ticket types

Operations

List all ticket types

Request

You can get a list of all ticket types for a workspace.

Headers
Intercom-Versionstring(intercom_version)

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

Default 2.11
Enum"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example: 2.11
curl -i -X GET \
  https://api.intercom.io/ticket_types \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Intercom-Version: 2.11'

Responses

successful

Bodyapplication/json
typestringrequired

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

Value"ticket_type_attributes.list"
ticket_typesArray of objects(Ticket Type)required

A list of ticket_types associated with a given workspace.

ticket_types[].​typestringrequired

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

Value"ticket_type"
Example: "ticket_type"
ticket_types[].​idstringrequired

The id representing the ticket type.

Example: "1295"
ticket_types[].​categorystringrequired

Category of the Ticket Type.

Enum"Customer""Back-office""Tracker"
Example: "Customer"
ticket_types[].​namestringrequired

The name of the ticket type

Example: "Bug"
ticket_types[].​descriptionstringrequired

The description of the ticket type

Example: "A bug that has been reported."
ticket_types[].​iconstringrequired

The icon of the ticket type

Example: "🐞"
ticket_types[].​workspace_idstringrequired

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

Example: "ecahpwf5"
ticket_types[].​ticket_type_attributesobject(Ticket Type Attributes)required

A list of attributes associated with a given ticket type.

ticket_types[].​ticket_type_attributes.​typestringrequired

String representing the object's type. Always has the value ticket_type_attributes.list.

Value"ticket_type_attributes.list"
ticket_types[].​ticket_type_attributes.​ticket_type_attributesArray of objects(Ticket Type Attribute)required

A list of ticket type attributes associated with a given ticket type.

ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​typestringrequired

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

Value"ticket_type_attribute"
Example: "ticket_type_attribute"
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​idstringrequired

The id representing the ticket type attribute.

Example: "1"
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​workspace_idstringrequired

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

Example: "ecahpwf5"
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​namestringrequired

The name of the ticket type attribute

Example: "Title"
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​descriptionstringrequired

The description of the ticket type attribute

Example: "Bug title."
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​data_typestringrequired

The type of the data attribute (allowed values: "string list integer decimal boolean datetime files")

Example: "string"
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​input_optionsobjectrequired

Input options for the attribute

Example: "multiline: true"
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​orderintegerrequired

The order of the attribute against other attributes

Example: 1
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​required_to_createbooleanrequired

Whether the attribute is required or not for teammates.

Default false
Example: false
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​required_to_create_for_contactsbooleanrequired

Whether the attribute is required or not for contacts.

Default false
Example: false
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​visible_on_createbooleanrequired

Whether the attribute is visible or not to teammates.

Default true
Example: false
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​visible_to_contactsbooleanrequired

Whether the attribute is visible or not to contacts.

Default true
Example: false
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​defaultbooleanrequired

Whether the attribute is built in or not.

Example: true
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​ticket_type_idintegerrequired

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

Example: 42
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​archivedbooleanrequired

Whether the ticket type attribute is archived or not.

Example: false
ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​created_atinteger(timestamp)required

The date and time the ticket type attribute was created.

ticket_types[].​ticket_type_attributes.​ticket_type_attributes[].​updated_atinteger(timestamp)

The date and time the ticket type attribute was last updated.

ticket_types[].​archivedbooleanrequired

Whether the ticket type is archived or not.

Example: false
ticket_types[].​created_atinteger(timestamp)required

The date and time the ticket type was created.

ticket_types[].​updated_atinteger(timestamp)

The date and time the ticket type was last updated.

Response
application/json
{ "type": "list", "data": [ {} ] }

Create a ticket type

Request

You can create a new ticket type.

📘 Creating ticket types.

Every ticket type will be created with two default attributes: default_title and default_description. For the icon propery, use an emoji from Twemoji Cheatsheet

Headers
Intercom-Versionstring(intercom_version)

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

Default 2.11
Enum"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example: 2.11
Bodyapplication/json
namestringrequired

The name of the ticket type.

Example: "Bug"
descriptionstring

The description of the ticket type.

Example: "Used for tracking bugs"
categorystring

Category of the Ticket Type.

Enum"Customer""Back-office""Tracker"
Example: "Customer"
iconstring

The icon of the ticket type.

Default "🎟️"
Example: "🐞"
is_internalboolean

Whether the tickets associated with this ticket type are intended for internal use only or will be shared with customers. This is currently a limited attribute.

Default false
Example: false
curl -i -X POST \
  https://api.intercom.io/ticket_types \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -H 'Intercom-Version: 2.11' \
  -d '{
    "name": "Customer Issue",
    "description": "Customer Report Template",
    "icon": "🎟️",
    "category": "Customer"
  }'

Responses

Ticket type created

Bodyapplication/json
typestringrequired

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

Value"ticket_type"
Example: "ticket_type"
idstringrequired

The id representing the ticket type.

Example: "1295"
categorystringrequired

Category of the Ticket Type.

Enum"Customer""Back-office""Tracker"
Example: "Customer"
namestringrequired

The name of the ticket type

Example: "Bug"
descriptionstringrequired

The description of the ticket type

Example: "A bug that has been reported."
iconstringrequired

The icon of the ticket type

Example: "🐞"
workspace_idstringrequired

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

Example: "ecahpwf5"
ticket_type_attributesobject(Ticket Type Attributes)required

A list of attributes associated with a given ticket type.

ticket_type_attributes.​typestringrequired

String representing the object's type. Always has the value ticket_type_attributes.list.

Value"ticket_type_attributes.list"
ticket_type_attributes.​ticket_type_attributesArray of objects(Ticket Type Attribute)required

A list of ticket type attributes associated with a given ticket type.

ticket_type_attributes.​ticket_type_attributes[].​typestringrequired

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

Value"ticket_type_attribute"
Example: "ticket_type_attribute"
ticket_type_attributes.​ticket_type_attributes[].​idstringrequired

The id representing the ticket type attribute.

Example: "1"
ticket_type_attributes.​ticket_type_attributes[].​workspace_idstringrequired

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

Example: "ecahpwf5"
ticket_type_attributes.​ticket_type_attributes[].​namestringrequired

The name of the ticket type attribute

Example: "Title"
ticket_type_attributes.​ticket_type_attributes[].​descriptionstringrequired

The description of the ticket type attribute

Example: "Bug title."
ticket_type_attributes.​ticket_type_attributes[].​data_typestringrequired

The type of the data attribute (allowed values: "string list integer decimal boolean datetime files")

Example: "string"
ticket_type_attributes.​ticket_type_attributes[].​input_optionsobjectrequired

Input options for the attribute

Example: "multiline: true"
ticket_type_attributes.​ticket_type_attributes[].​orderintegerrequired

The order of the attribute against other attributes

Example: 1
ticket_type_attributes.​ticket_type_attributes[].​required_to_createbooleanrequired

Whether the attribute is required or not for teammates.

Default false
Example: false
ticket_type_attributes.​ticket_type_attributes[].​required_to_create_for_contactsbooleanrequired

Whether the attribute is required or not for contacts.

Default false
Example: false
ticket_type_attributes.​ticket_type_attributes[].​visible_on_createbooleanrequired

Whether the attribute is visible or not to teammates.

Default true
Example: false
ticket_type_attributes.​ticket_type_attributes[].​visible_to_contactsbooleanrequired

Whether the attribute is visible or not to contacts.

Default true
Example: false
ticket_type_attributes.​ticket_type_attributes[].​defaultbooleanrequired

Whether the attribute is built in or not.

Example: true
ticket_type_attributes.​ticket_type_attributes[].​ticket_type_idintegerrequired

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

Example: 42
ticket_type_attributes.​ticket_type_attributes[].​archivedbooleanrequired

Whether the ticket type attribute is archived or not.

Example: false
ticket_type_attributes.​ticket_type_attributes[].​created_atinteger(timestamp)required

The date and time the ticket type attribute was created.

ticket_type_attributes.​ticket_type_attributes[].​updated_atinteger(timestamp)

The date and time the ticket type attribute was last updated.

archivedbooleanrequired

Whether the ticket type is archived or not.

Example: false
created_atinteger(timestamp)required

The date and time the ticket type was created.

updated_atinteger(timestamp)

The date and time the ticket type was last updated.

Response
application/json
{ "type": "ticket_type", "id": "88", "name": "Customer Issue", "description": "Customer Report Template", "icon": "🎟️", "workspace_id": "this_is_an_id612_that_should_be_at_least_", "archived": false, "created_at": 1719493016, "updated_at": 1719493016, "is_internal": false, "ticket_type_attributes": { "type": "list", "data": [] }, "category": "Customer" }

Retrieve a ticket type

Request

You can fetch the details of a single ticket type.

Path
ticket_type_idstringrequired

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

Headers
Intercom-Versionstring(intercom_version)

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

Default 2.11
Enum"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example: 2.11
curl -i -X GET \
  'https://api.intercom.io/ticket_types/{ticket_type_id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Intercom-Version: 2.11'

Responses

Ticket type found

Bodyapplication/json
typestringrequired

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

Value"ticket_type"
Example: "ticket_type"
idstringrequired

The id representing the ticket type.

Example: "1295"
categorystringrequired

Category of the Ticket Type.

Enum"Customer""Back-office""Tracker"
Example: "Customer"
namestringrequired

The name of the ticket type

Example: "Bug"
descriptionstringrequired

The description of the ticket type

Example: "A bug that has been reported."
iconstringrequired

The icon of the ticket type

Example: "🐞"
workspace_idstringrequired

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

Example: "ecahpwf5"
ticket_type_attributesobject(Ticket Type Attributes)required

A list of attributes associated with a given ticket type.

ticket_type_attributes.​typestringrequired

String representing the object's type. Always has the value ticket_type_attributes.list.

Value"ticket_type_attributes.list"
ticket_type_attributes.​ticket_type_attributesArray of objects(Ticket Type Attribute)required

A list of ticket type attributes associated with a given ticket type.

ticket_type_attributes.​ticket_type_attributes[].​typestringrequired

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

Value"ticket_type_attribute"
Example: "ticket_type_attribute"
ticket_type_attributes.​ticket_type_attributes[].​idstringrequired

The id representing the ticket type attribute.

Example: "1"
ticket_type_attributes.​ticket_type_attributes[].​workspace_idstringrequired

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

Example: "ecahpwf5"
ticket_type_attributes.​ticket_type_attributes[].​namestringrequired

The name of the ticket type attribute

Example: "Title"
ticket_type_attributes.​ticket_type_attributes[].​descriptionstringrequired

The description of the ticket type attribute

Example: "Bug title."
ticket_type_attributes.​ticket_type_attributes[].​data_typestringrequired

The type of the data attribute (allowed values: "string list integer decimal boolean datetime files")

Example: "string"
ticket_type_attributes.​ticket_type_attributes[].​input_optionsobjectrequired

Input options for the attribute

Example: "multiline: true"
ticket_type_attributes.​ticket_type_attributes[].​orderintegerrequired

The order of the attribute against other attributes

Example: 1
ticket_type_attributes.​ticket_type_attributes[].​required_to_createbooleanrequired

Whether the attribute is required or not for teammates.

Default false
Example: false
ticket_type_attributes.​ticket_type_attributes[].​required_to_create_for_contactsbooleanrequired

Whether the attribute is required or not for contacts.

Default false
Example: false
ticket_type_attributes.​ticket_type_attributes[].​visible_on_createbooleanrequired

Whether the attribute is visible or not to teammates.

Default true
Example: false
ticket_type_attributes.​ticket_type_attributes[].​visible_to_contactsbooleanrequired

Whether the attribute is visible or not to contacts.

Default true
Example: false
ticket_type_attributes.​ticket_type_attributes[].​defaultbooleanrequired

Whether the attribute is built in or not.

Example: true
ticket_type_attributes.​ticket_type_attributes[].​ticket_type_idintegerrequired

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

Example: 42
ticket_type_attributes.​ticket_type_attributes[].​archivedbooleanrequired

Whether the ticket type attribute is archived or not.

Example: false
ticket_type_attributes.​ticket_type_attributes[].​created_atinteger(timestamp)required

The date and time the ticket type attribute was created.

ticket_type_attributes.​ticket_type_attributes[].​updated_atinteger(timestamp)

The date and time the ticket type attribute was last updated.

archivedbooleanrequired

Whether the ticket type is archived or not.

Example: false
created_atinteger(timestamp)required

The date and time the ticket type was created.

updated_atinteger(timestamp)

The date and time the ticket type was last updated.

Response
application/json
{ "type": "ticket_type", "id": "90", "name": "Bug Report", "description": "Bug Report Template", "icon": "🎟️", "workspace_id": "this_is_an_id616_that_should_be_at_least_", "archived": false, "created_at": 1719493017, "updated_at": 1719493017, "is_internal": false, "ticket_type_attributes": { "type": "list", "data": [] }, "category": "Customer" }

Update a ticket type

Request

You can update a ticket type.

📘 Updating a ticket type.

For the icon propery, use an emoji from Twemoji Cheatsheet

Path
ticket_type_idstringrequired

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

Headers
Intercom-Versionstring(intercom_version)

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

Default 2.11
Enum"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example: 2.11
Bodyapplication/json
namestring

The name of the ticket type.

Example: "Bug"
descriptionstring

The description of the ticket type.

Example: "A bug has been occured"
categorystring

Category of the Ticket Type.

Enum"Customer""Back-office""Tracker"
Example: "Customer"
iconstring

The icon of the ticket type.

Default "🎟️"
Example: "🐞"
archivedboolean

The archived status of the ticket type.

Example: false
is_internalboolean

Whether the tickets associated with this ticket type are intended for internal use only or will be shared with customers. This is currently a limited attribute.

Default false
Example: false
curl -i -X PUT \
  'https://api.intercom.io/ticket_types/{ticket_type_id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -H 'Intercom-Version: 2.11' \
  -d '{
    "name": "Bug Report 2"
  }'

Responses

Ticket type updated

Bodyapplication/json
typestringrequired

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

Value"ticket_type"
Example: "ticket_type"
idstringrequired

The id representing the ticket type.

Example: "1295"
categorystringrequired

Category of the Ticket Type.

Enum"Customer""Back-office""Tracker"
Example: "Customer"
namestringrequired

The name of the ticket type

Example: "Bug"
descriptionstringrequired

The description of the ticket type

Example: "A bug that has been reported."
iconstringrequired

The icon of the ticket type

Example: "🐞"
workspace_idstringrequired

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

Example: "ecahpwf5"
ticket_type_attributesobject(Ticket Type Attributes)required

A list of attributes associated with a given ticket type.

ticket_type_attributes.​typestringrequired

String representing the object's type. Always has the value ticket_type_attributes.list.

Value"ticket_type_attributes.list"
ticket_type_attributes.​ticket_type_attributesArray of objects(Ticket Type Attribute)required

A list of ticket type attributes associated with a given ticket type.

ticket_type_attributes.​ticket_type_attributes[].​typestringrequired

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

Value"ticket_type_attribute"
Example: "ticket_type_attribute"
ticket_type_attributes.​ticket_type_attributes[].​idstringrequired

The id representing the ticket type attribute.

Example: "1"
ticket_type_attributes.​ticket_type_attributes[].​workspace_idstringrequired

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

Example: "ecahpwf5"
ticket_type_attributes.​ticket_type_attributes[].​namestringrequired

The name of the ticket type attribute

Example: "Title"
ticket_type_attributes.​ticket_type_attributes[].​descriptionstringrequired

The description of the ticket type attribute

Example: "Bug title."
ticket_type_attributes.​ticket_type_attributes[].​data_typestringrequired

The type of the data attribute (allowed values: "string list integer decimal boolean datetime files")

Example: "string"
ticket_type_attributes.​ticket_type_attributes[].​input_optionsobjectrequired

Input options for the attribute

Example: "multiline: true"
ticket_type_attributes.​ticket_type_attributes[].​orderintegerrequired

The order of the attribute against other attributes

Example: 1
ticket_type_attributes.​ticket_type_attributes[].​required_to_createbooleanrequired

Whether the attribute is required or not for teammates.

Default false
Example: false
ticket_type_attributes.​ticket_type_attributes[].​required_to_create_for_contactsbooleanrequired

Whether the attribute is required or not for contacts.

Default false
Example: false
ticket_type_attributes.​ticket_type_attributes[].​visible_on_createbooleanrequired

Whether the attribute is visible or not to teammates.

Default true
Example: false
ticket_type_attributes.​ticket_type_attributes[].​visible_to_contactsbooleanrequired

Whether the attribute is visible or not to contacts.

Default true
Example: false
ticket_type_attributes.​ticket_type_attributes[].​defaultbooleanrequired

Whether the attribute is built in or not.

Example: true
ticket_type_attributes.​ticket_type_attributes[].​ticket_type_idintegerrequired

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

Example: 42
ticket_type_attributes.​ticket_type_attributes[].​archivedbooleanrequired

Whether the ticket type attribute is archived or not.

Example: false
ticket_type_attributes.​ticket_type_attributes[].​created_atinteger(timestamp)required

The date and time the ticket type attribute was created.

ticket_type_attributes.​ticket_type_attributes[].​updated_atinteger(timestamp)

The date and time the ticket type attribute was last updated.

archivedbooleanrequired

Whether the ticket type is archived or not.

Example: false
created_atinteger(timestamp)required

The date and time the ticket type was created.

updated_atinteger(timestamp)

The date and time the ticket type was last updated.

Response
application/json
{ "type": "ticket_type", "id": "92", "name": "Bug Report 2", "description": "Bug Report Template", "icon": "🎟️", "workspace_id": "this_is_an_id620_that_should_be_at_least_", "archived": false, "created_at": 1719493018, "updated_at": 1719493018, "is_internal": false, "ticket_type_attributes": { "type": "list", "data": [] }, "category": "Customer" }

Tickets

Everything about your tickets

Operations

Visitors

Everything about your Visitors

Operations

Models