Home//
REST API Reference
/- List all contact activities
List attached contacts
Attach a Contact to a Company
List attached companies for contact
Detach a contact from a company
List all contact notes
Create a note
List attached segments for contact
List subscriptions for a contact
Add subscription to a contact
Remove subscription from a contact
List tags attached to a contact
Add tag to a contact
Remove tag from a contact
List deleted contacts
Update a contact
Get a contact
Delete a contact
Merge a lead and a user
Preview a contact merge
Search contacts
List all contacts
Create contact
Get a contact by External ID
Archive contact
Unarchive contact
Block contact
Get contact merge history
List banners for a contact
Dismiss a banner for a contact
Bulk create contacts
Bulk update contacts
Bulk delete contacts
Get a bulk update job
Contact
Contacts Bulk Job
List all contact activiti...
You can fetch a list of contact activity events for your workspace, such as when contacts are created, role updated, merged, or deleted. Events are returned oldest first.
Pagination
You can use pagination to limit the number of results returned. The default is 50 results per page, with a maximum of 150. See the pagination section for more details on how to use the starting_after param.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"Preview"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:Preview
- The production API serverhttps://api.intercom.io/contacts/activities
- The european API serverhttps://api.eu.intercom.io/contacts/activities
- The australian API serverhttps://api.au.intercom.io/contacts/activities
curl -i -X GET \
'https://api.intercom.io/contacts/activities?per_page=50&starting_after=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: Preview'successful
dataArray of objects(Contact Activity)
The list of contact activity objects.
Response
{ "type": "list", "data": [ { … }, { … }, { … }, { … }, { … } ], "pages": { "type": "pages", "per_page": 50, "next": { … } } }