Home//
REST API Reference
/- List deleted contacts
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
Update a contact
Get a contact
Delete a contact
Merge a lead and a user
Preview a contact merge
Search contacts
List all contact activities
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 deleted contacts
Fetch a paginated list of the contacts in your workspace that are no longer active, so you can recover ones whose id, email, or external_id you no longer have and then permanently delete them. Each entry carries a status describing why the contact is inactive: archived, blocked, merged, pending_deletion, or permanently_deleted. merged_into_id is present only when status is merged, and external_id and email are null for permanently_deleted contacts.
Security
bearerAuth
Intercom-Versionstring(intercom_version_preview)
Preview Intercom API version. Used for closed beta endpoints or other features under managed availability.
Default:"preview"
Value:"preview"
Example:preview
- The production API serverhttps://api.intercom.io/contacts/deleted
- The european API serverhttps://api.eu.intercom.io/contacts/deleted
- The australian API serverhttps://api.au.intercom.io/contacts/deleted
curl -i -X GET \
'https://api.intercom.io/contacts/deleted?per_page=10&page=1' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: preview'successful
dataArray of objects(Deleted Contact)
The list of deleted contact objects.
Example:
[ { "type": "contact", "id": "5ba682d23d7cf92bef87bfd4", "external_id": "70", "email": "joe@example.com", "role": "user", "status": "archived", "updated_at": 1756636800 } ]
Response
{ "type": "list", "data": [ { … }, { … }, { … } ], "total_count": 3, "pages": { "type": "pages", "page": 1, "per_page": 10, "total_pages": 1 } }