The intercom API reference.
Home//
REST API Reference
/- Unarchive contact
Contact
List attached contacts
Attach a Contact to a Company
List attached companies for contact
Detach a contact from a company
List all 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
Search contacts
List all contacts
Create contact
Archive contact
Unarchive contact
Intercom API (2.10)
Download OpenAPI description
Overview
URL
License
Languages
Servers
The production API server
https://api.intercom.io/
The european API server
https://api.eu.intercom.io/
The australian API server
https://api.au.intercom.io/
- The production API server
https://api.intercom.io/contacts/{id}/archive
- The european API server
https://api.eu.intercom.io/contacts/{id}/archive
- The australian API server
https://api.au.intercom.io/contacts/{id}/archive
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X POST \
https://api.intercom.io/contacts/63a07ddf05a32042dffac965/archive \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.10'
Response
application/json
{ "id": "6657ac686abd0166b52ae249", "external_id": "70", "type": "contact", "archived": true }
- The production API server
https://api.intercom.io/contacts/{id}/unarchive
- The european API server
https://api.eu.intercom.io/contacts/{id}/unarchive
- The australian API server
https://api.au.intercom.io/contacts/{id}/unarchive
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X POST \
https://api.intercom.io/contacts/63a07ddf05a32042dffac965/unarchive \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.10'
Response
application/json
{ "id": "6657ac696abd0166b52ae24a", "external_id": "70", "type": "contact", "archived": false }