- Get a contact
You can fetch the details of a single contact.
If a contact has been merged into another contact via the Merge endpoint (POST /contacts/merge), requesting it by its original ID will return a 404 Not Found error. Use the merged-into contact's ID instead.
Intercom API version.
By default, it's equal to the version set in the app package.
- The production API serverhttps://api.intercom.io/contacts/{id}
- The european API serverhttps://api.eu.intercom.io/contacts/{id}
- The australian API serverhttps://api.au.intercom.io/contacts/{id}
curl -i -X GET \
https://api.intercom.io/contacts/63a07ddf05a32042dffac965 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.9'successful
The unique identifier for the contact which is given by Intercom.
The unique identifier for the contact which is provided by the Client.
The id of an admin that has been assigned account ownership of the contact.
Whether the contact has marked an email sent to them as spam.
(Unix timestamp in seconds) The time when the contact was created.
(Unix timestamp in seconds) The time when the contact was last updated.
(Unix timestamp in seconds) The time specified for when a contact signed up.
(Unix timestamp in seconds) The time when the contact was last seen (either where the Intercom Messenger was installed or when specified manually).
(Unix timestamp in seconds) The time when the contact last messaged in.
(Unix timestamp in seconds) The time when the contact was last messaged.
(Unix timestamp in seconds) The time when the contact last opened an email.
(Unix timestamp in seconds) The time when the contact last clicked a link in an email.
A preferred language setting for the contact, used by the Intercom Messenger even if their browser settings change.
The version of the browser which the contact is using.
The language set by the browser which the contact is using.
The name of the Android app which the contact is using.
The version of the Android app which the contact is using.
The version of the Android OS which the contact is using.
The version of the Android SDK which the contact is using.
(Unix timestamp in seconds) The time when the contact was last seen on an Android device.
(Unix timestamp in seconds) The last time the contact used the iOS app.
An object containing notes meta data about the notes that a contact has. Up to 10 will be displayed here. Use the url to get more.
An object containing companies meta data about the companies that a contact has. Up to 10 will be displayed here. Use the url to get more.
An object containing location meta data about a Intercom contact.
{ "type": "contact", "id": "6657aae86abd0164c24b0d29", "workspace_id": "this_is_an_id263_that_should_be_at_least_", "external_id": "70", "role": "user", "email": "joe@bloggs.com", "phone": null, "name": "Joe Bloggs", "avatar": null, "owner_id": null, "social_profiles": { "type": "list", "data": [] }, "has_hard_bounced": false, "marked_email_as_spam": false, "unsubscribed_from_emails": false, "created_at": 1717021416, "updated_at": 1717021416, "signed_up_at": 1717021416, "last_seen_at": null, "last_replied_at": null, "last_contacted_at": null, "last_email_opened_at": null, "last_email_clicked_at": null, "language_override": null, "browser": null, "browser_version": null, "browser_language": null, "os": null, "location": { "type": "location", "country": null, "region": null, "city": null, "country_code": null, "continent_code": null }, "android_app_name": null, "android_app_version": null, "android_device": null, "android_os_version": null, "android_sdk_version": null, "android_last_seen_at": null, "ios_app_name": null, "ios_app_version": null, "ios_device": null, "ios_os_version": null, "ios_sdk_version": null, "ios_last_seen_at": null, "custom_attributes": {}, "tags": { "type": "list", "data": [], "url": "/contacts/6657aae86abd0164c24b0d29/tags", "total_count": 0, "has_more": false }, "notes": { "type": "list", "data": [], "url": "/contacts/6657aae86abd0164c24b0d29/notes", "total_count": 0, "has_more": false }, "companies": { "type": "list", "data": [], "url": "/contacts/6657aae86abd0164c24b0d29/companies", "total_count": 0, "has_more": false }, "opted_out_subscription_types": { "type": "list", "data": [], "url": "/contacts/6657aae86abd0164c24b0d29/subscriptions", "total_count": 0, "has_more": false }, "opted_in_subscription_types": { "type": "list", "data": [], "url": "/contacts/6657aae86abd0164c24b0d29/subscriptions", "total_count": 0, "has_more": false }, "utm_campaign": null, "utm_content": null, "utm_medium": null, "utm_source": null, "utm_term": null, "referrer": null }