You can update an existing contact (ie. user or lead).
This endpoint handles both contact updates and custom object associations.
See update a contact with an association to a custom object instance in the request/response examples to see the custom object association format.
Intercom API version.
By default, it's equal to the version set in the app package.
You can update a contact
Whether the contact's email address has been verified. Set to true to indicate you have verified the contact owns this email address, or false to mark it as unverified. Must be supplied together with an email in the same request; sending it without an email returns a 400.
An image URL containing the avatar of a contact
(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).
The id of an admin that has been assigned account ownership of the contact
- The production API serverhttps://api.intercom.io/contacts/{contact_id}
- The european API serverhttps://api.eu.intercom.io/contacts/{contact_id}
- The australian API serverhttps://api.au.intercom.io/contacts/{contact_id}
- successful
- update a contact with an association to a custom object instance
curl -i -X PUT \
'https://api.intercom.io/contacts/63a07ddf05a32042dffac965?include_merge_history=false' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: 2.16' \
-d '{
"email": "joebloggs@intercom.io",
"name": "joe bloggs"
}'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 with metadata about companies attached to a contact . Up to 10 will be displayed here. Use the url to get more.
An object containing location meta data about a Intercom contact.
A list of contacts that were merged into this contact. Only included in the response when include_merge_history=true is passed as a query parameter. Only available for contacts with a user role.
- successful
- update a contact with an association to a custom object instance
{ "type": "contact", "id": "6762f0cd1bb69f9f2193bb7c", "workspace_id": "this_is_an_id279_that_should_be_at_least_", "external_id": "70", "role": "user", "email": "joebloggs@intercom.io", "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": 1734537421, "updated_at": 1734537422, "signed_up_at": 1734537421, "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/6762f0cd1bb69f9f2193bb7c/tags", "total_count": 0, "has_more": false }, "notes": { "type": "list", "data": [], "url": "/contacts/6762f0cd1bb69f9f2193bb7c/notes", "total_count": 0, "has_more": false }, "companies": { "type": "list", "data": [], "url": "/contacts/6762f0cd1bb69f9f2193bb7c/companies", "total_count": 0, "has_more": false }, "opted_out_subscription_types": { "type": "list", "data": [], "url": "/contacts/6762f0cd1bb69f9f2193bb7c/subscriptions", "total_count": 0, "has_more": false }, "opted_in_subscription_types": { "type": "list", "data": [], "url": "/contacts/6762f0cd1bb69f9f2193bb7c/subscriptions", "total_count": 0, "has_more": false }, "utm_campaign": null, "utm_content": null, "utm_medium": null, "utm_source": null, "utm_term": null, "referrer": null, "enabled_push_messaging": null }