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

Tickets

Everything about your tickets

Operations

Visitors

Everything about your Visitors

Operations

Models

Custom Attributes

An object containing the different custom attributes associated to the conversation as key-value pairs. For relationship attributes the value will be a list of custom object instance models.

property name*string or Custom Object Instance (object)additional property
Any of:
string
{ "property1": "string", "property2": "string" }

customer_request

One of:
intercom_user_idstringrequired

The identifier for the contact as given by Intercom.

Example: "6329bd9ffe4e2e91dac76188"
{ "intercom_user_id": "6329bd9ffe4e2e91dac76188" }

Data Attribute List

A list of all data attributes belonging to a workspace for contacts, companies or conversations.

typestringrequired

The type of the object

Value"list"
Example: "list"
dataArray of objects(Data Attribute)required

A list of data attributes

data[].​typestringrequired

Value is data_attribute.

Value"data_attribute"
Example: "data_attribute"
data[].​idinteger

The unique identifier for the data attribute which is given by Intercom. Only available for custom attributes.

Example: 12878
data[].​modelstring

Value is contact for user/lead attributes and company for company attributes.

Enum"contact""company"
Example: "contact"
data[].​namestringrequired

Name of the attribute.

Example: "paid_subscriber"
data[].​full_namestringrequired

Full name of the attribute. Should match the name unless it's a nested attribute. We can split full_name on . to access nested user object values.

Example: "custom_attributes.paid_subscriber"
data[].​labelstringrequired

Readable name of the attribute (i.e. name you see in the UI)

Example: "Paid Subscriber"
data[].​descriptionstringrequired

Readable description of the attribute.

Example: "Whether the user is a paid subscriber."
data[].​data_typestringrequired

The data type of the attribute.

Enum"string""integer""float""boolean""date"
Example: "boolean"
data[].​optionsArray of strings

List of predefined options for attribute value.

Example: ["true","false"]
data[].​api_writableboolean

Can this attribute be updated through API

Example: true
data[].​messenger_writableboolean

Can this attribute be updated by the Messenger

Example: false
data[].​ui_writableboolean

Can this attribute be updated in the UI

Example: true
data[].​customboolean

Set to true if this is a CDA

Example: true
data[].​archivedboolean

Is this attribute archived. (Only applicable to CDAs)

Example: false
data[].​created_atinteger(date-time)

The time the attribute was created as a UTC Unix timestamp

Example: 1671028894
data[].​updated_atinteger(date-time)

The time the attribute was last updated as a UTC Unix timestamp

Example: 1671028894
data[].​admin_idstring

Teammate who created the attribute. Only applicable to CDAs

Example: "5712945"
{ "type": "list", "data": [ {} ] }