User Model

Example User Object (i.e. example JSON response)

{\n  \"type\": \"user\",\n  \"id\": \"530370b477ad7120001d\",\n  \"user_id\": \"25\",\n  \"email\": \"email@example.com\",\n  \"phone\": \"+1123456789\",\n  \"name\": \"Joe Example\",\n  \"updated_at\": 1392734388,\n  \"last_seen_ip\" : null,\n  \"unsubscribed_from_emails\": false,\n  \"last_request_at\": 1397574667,\n  \"signed_up_at\": 1392731331,\n  \"created_at\": 1392734388,\n  \"session_count\": 179,\n  \"user_agent_data\": null,\n  \"pseudonym\": null,\n  \"anonymous\": false,\n  \"referrer\": \"https://example.org\",\n  \"owner_id\": \"321452\",\n  \"utm_campaign\": null,\n  \"utm_content\": null,\n  \"utm_medium\": null,\n  \"utm_source\": null,\n  \"utm_term\": null,\n  \"custom_attributes\": {\n    \"paid_subscriber\" : true,\n    \"monthly_spend\": 155.5,\n    \"team_mates\": 1\n  },\n  \"avatar\": {\n    \"type\":\"avatar\",\n    \"image_url\": \"https://example.org/128Wash.jpg\"\n  },\n  \"location_data\": {\n      \"type\": \"location_data\",\n      \"city_name\": \"Dublin\",\n      \"continent_code\": \"EU\",\n      \"country_code\": \"IRL\",\n      \"country_name\": \"Ireland\",\n      \"latitude\": null,\n      \"longitude\": null,\n      \"postal_code\": null,\n      \"region_name\": \"Dublin\",\n      \"timezone\": \"Europe/Dublin\"\n  },\n  \"social_profiles\": {\n    \"type\":\"social_profile.list\",\n    \"social_profiles\": [\n      {\n        \"name\": \"twitter\",\n       \"id\": \"1235d3213\",\n        \"username\": \"th1sland\",\n        \"url\": \"http://twitter.com/th1sland\"\n      }\n    ]\n  },\n  \"companies\": {\n    \"type\": \"company.list\",\n    \"companies\": [\n      {\n        \"id\" : \"530370b477ad7120001e\"\n      }\n    ]\n  },\n  \"segments\": {\n    \"type\": \"segment.list\",\n    \"segments\": [ ]\n  },\n  \"tags\": {\n    \"type\": \"tag.list\",\n    \"tags\": [\n      {\n        \"id\": \"202\"\n      }\n    ]\n  }\n}

Example List of Users

{\n  \"type\": \"user.list\",\n  \"total_count\": 1, \n  \"users\": [\n    # an array of user objects\n  ],\n  \"pages\": {}\n}

User Object

A user object contains the following fields

AttributeTypeDescription
typestringValue is 'user' or 'contact'
idstringThe Intercom defined id representing the user
created_attimestampThe time (in seconds) the user was added to Intercom
signed_up_attimestampThe time (in seconds) the user signed up
updated_attimestampThe last time the user was updated
user_idstringThe user id you have defined for the user. (Max limit of 255 UTF-8 characters, and should not have trailing or leading spaces)
emailstringThe email you have defined for the user. (Max limit of 255 UTF-8 characters, and should not have trailing or leading spaces)
phonestringThe phone number of the user
custom_attributesobjectThe custom attributes you have set on the user (case sensitive).
last_request_attimestampThe time the user last recorded making a request
session_countintegerHow many sessions the user has recorded
avatarobjectAn avatar object for the user.
unsubscribed_from_emailsbooleanWhether the user is unsubscribed from emails
location_dataobjectA Location Object relating to the user
user_agent_datanullThis will return null as of V1.1 in an effort to remove PII from our API.
last_seen_ipnullThis will return null as of V1.1 in an effort to remove PII from our API.
pseudonymstringThe pseudonym used if this user was previously a Lead (https://www.intercom.com/help/en/Intercom-for-customer-communication/the-intercom-messenger)
anonymousbooleanWhether or not this is a Lead. Always false
companieslistA list of companies for the user
social_profileslistA list of social profiles associated with the user
segmentslistThis will return an empty list of segments as part of our effort to deprecate this attribute on the user model for performance and accuracy reasons.
tagslistA list of tags associated with the user
namestringThe full name of the user
referrerstringThe URL of the page the user was last on
utm_sourcestringIdentifies which site sent the traffic
utm_mediumstringIdentifies what type of link was used
utm_campaignstringIdentifies a specific product promotion or strategic campaign
utm_termstringIdentifies search terms
utm_contentstringIdentifies what specifically was clicked to bring the user to the site

Note that in some parts of the API, the user id field may be referred to using intercom_user_id.
Any integer values in the user model are limited to the int32 range -2^31 to 2^31 -1

Social Profile Object

AttributeTypeDescription
typestringValue is 'social_profile'
namestringThe name of the service (e.g., twitter, facebook)
usernamestringUser name or handle on the service
urlstringThe user homepage on the service
idstringOptional. User ID on the service

Social data is read only and can not be updated via the API.

Avatar Object

AttributeTypeDescription
typestringValue is 'avatar'
image_urlstringAn avatar image URL. note: the image url needs to be https.

Location Object

AttributeTypeDescription
typestringValue is 'location_data'
city_namestringOptional. A city name
continent_codestringOptional. A continent code
country_codestringOptional. An ISO 3166 country code
country_namestringOptional. The country name
latitudenumberOptional. The latitude
longitudenumberOptional. The longitude
postal_codestringOptional. A postal code
region_namestringOptional. A region name
timezonestringOptional. An ISO 8601 timezone

Location data is read only and can not be updated via the API.

User List

AttributeTypeDescription
typestringValue is 'user.list'
total_countintegerThe number of users for this app
pagesobjectA Pagination object
usersarrayA list of users

The user list does not return Leads - this means all objects in the list will have an anonymous value of false. Any user in the list that was converted from a Lead will retain their pseudonym value.